mirror of https://github.com/nocodb/nocodb
DarkPhoenix2704
3 days ago
9 changed files with 512 additions and 470 deletions
@ -1,85 +0,0 @@ |
|||||||
const path = require('path'); |
|
||||||
const { rspack } = require('@rspack/core'); |
|
||||||
const nodeExternals = require('webpack-node-externals'); |
|
||||||
|
|
||||||
module.exports = { |
|
||||||
entry: './src/run/local.ts', |
|
||||||
// devtool: 'inline-source-map',
|
|
||||||
module: { |
|
||||||
rules: [ |
|
||||||
{ |
|
||||||
test: /\.node$/, |
|
||||||
loader: 'node-loader', |
|
||||||
options: { |
|
||||||
name: '[path][name].[ext]', |
|
||||||
}, |
|
||||||
}, |
|
||||||
{ |
|
||||||
test: /\.tsx?$/, |
|
||||||
exclude: /node_modules/, |
|
||||||
loader: 'builtin:swc-loader', |
|
||||||
options: { |
|
||||||
jsc: { |
|
||||||
parser: { |
|
||||||
syntax: 'typescript', |
|
||||||
tsx: true, |
|
||||||
decorators: true, |
|
||||||
dynamicImport: true, |
|
||||||
}, |
|
||||||
transform: { |
|
||||||
legacyDecorator: true, |
|
||||||
decoratorMetadata: true, |
|
||||||
}, |
|
||||||
target: 'es2017', |
|
||||||
}, |
|
||||||
module: { |
|
||||||
type: 'commonjs', |
|
||||||
}, |
|
||||||
}, |
|
||||||
}, |
|
||||||
], |
|
||||||
}, |
|
||||||
|
|
||||||
optimization: { |
|
||||||
minimize: true, //Update this to true or false
|
|
||||||
minimizer: [ |
|
||||||
new rspack.SwcJsMinimizerRspackPlugin({ |
|
||||||
minimizerOptions: { |
|
||||||
compress: { |
|
||||||
keep_classnames: true, |
|
||||||
}, |
|
||||||
}, |
|
||||||
}), |
|
||||||
], |
|
||||||
nodeEnv: false, |
|
||||||
}, |
|
||||||
externals: [ |
|
||||||
nodeExternals({ |
|
||||||
allowlist: ['nocodb-sdk'], |
|
||||||
}), |
|
||||||
], |
|
||||||
resolve: { |
|
||||||
extensions: ['.tsx', '.ts', '.js', '.json', '.node'], |
|
||||||
tsConfig: { |
|
||||||
configFile: path.resolve('tsconfig.json'), |
|
||||||
}, |
|
||||||
}, |
|
||||||
mode: 'production', |
|
||||||
output: { |
|
||||||
filename: 'main.js', |
|
||||||
path: path.resolve(__dirname, 'docker'), |
|
||||||
library: 'libs', |
|
||||||
libraryTarget: 'umd', |
|
||||||
globalObject: "typeof self !== 'undefined' ? self : this", |
|
||||||
}, |
|
||||||
node: { |
|
||||||
__dirname: false, |
|
||||||
}, |
|
||||||
plugins: [ |
|
||||||
new rspack.EnvironmentPlugin({ |
|
||||||
EE: true, |
|
||||||
}), |
|
||||||
], |
|
||||||
|
|
||||||
target: 'node', |
|
||||||
}; |
|
Loading…
Reference in new issue