-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathwebpack.config.js
54 lines (50 loc) · 1.21 KB
/
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
47
48
49
50
51
52
53
54
const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
const webpack = require('webpack'); //to access built-in plugins
module.exports = {
entry: {
'dweb-transports': './index.js',
},
output: {
filename: '[name]-bundle.js',
path: __dirname + '/dist'
},
node: {
fs: 'empty',
net: 'empty',
tls: 'empty',
crypto: 'empty',
process: true,
module: false,
clearImmediate: false,
Buffer: true,
setImmediate: false,
console: false,
dgram: 'empty'
},
plugins: [
new webpack.EnvironmentPlugin({
WOLK_ENV: 'idb',
})
],
resolve: {
alias: {
zlib: 'browserify-zlib-next',
zlib: 'zlib'
}
},
optimization: {
minimizer: [
new UglifyJsPlugin({
sourceMap: true,
uglifyOptions: {
compress: {
unused: false,
collapse_vars: false // debug has a problem in production without this.
}
//compress: false
}
})
]
},
devtool: 'source-map'
}