-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
46 lines (41 loc) · 994 Bytes
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
const path = require('path');
const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
const MATCH_ALL_NON_RELATIVE_IMPORTS = /^\w.*$/i;
const pluginConfigs = {
UglifyJsPlugin: new UglifyJsPlugin()
};
const baseConfig = {
output: {
filename: '[name].js',
path: path.join(__dirname, '/dist'),
library: '',
libraryTarget: 'commonjs'
},
watch: false,
stats: "errors-only",
mode: 'production',
externals: [MATCH_ALL_NON_RELATIVE_IMPORTS, {
'./src/index.js': './src/index.js'
}],
module: {
rules: [
{
test: [/\.js$/],
exclude: /node_modules/,
loader: "babel-loader"
}
]
}
};
const serverConfig = Object.assign({}, baseConfig, {
entry: {
"index": ['@babel/polyfill', path.join(__dirname, '/src/index.js')],
"external/redis": ['@babel/polyfill', path.join(__dirname, '/src/external/redis.js')]
},
target: 'node',
plugins: [
pluginConfigs.UglifyJsPlugin
]
})
module.exports = [ serverConfig ]
module.exports.pluginConfigs = pluginConfigs;