-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathwebpack.base.config.js
79 lines (71 loc) · 2.09 KB
/
webpack.base.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
'use strict';
const path = require('path');
const TerserPlugin = require('terser-webpack-plugin');
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
/** @type import('webpack').Configuration */
module.exports = {
module: {
rules: [
{
test: /\.ts$/,
use: [{ loader: 'ts-loader' }],
exclude: [/node_modules/]
},
/*{
test: /\.wasm$/,
type: 'asset/source',
},*/
]
},
resolve: {
extensions: ['.ts', '.js'],
alias: {
// Stub out particularly large dependencies that are unnecessary and/or
// only provide features that Node.js also provides out of the box.
browserslist: path.resolve(__dirname, '..', 'scripts', 'dummy-browserslist.js'),
tr46: path.resolve(__dirname, '..', 'scripts', 'tr46-stub.js'),
// Optional native-addon dependencies of ssh2
'cpu-features': false,
'./crypto/build/Release/sshcrypto.node': false,
}
},
externals: {
'node:crypto': 'commonjs2 crypto',
electron: 'commonjs2 electron', // Optional dep of the OIDC plugin
},
optimization: {
minimizer: [
new TerserPlugin({
terserOptions: {
// Using ASCII-only output means a slightly larger bundle file,
// but a significantly smaller executable, since V8 only allows
// storing strings as either ISO-8859-1 or UTF-16 and UTF-16 takes
// up twice the space that ISO-8859-1 strings do.
output: { ascii_only: true },
// Not keeping classnames breaks shell-api during minification
keep_classnames: true,
compress: {
// The 'bindings' package relies on `error.stack;` having side effects.
pure_getters: false
}
}
})
]
},
output: {
chunkFormat: false,
strictModuleErrorHandling: true,
strictModuleExceptionHandling: true,
},
node: false,
target: 'node',
plugins: [
new BundleAnalyzerPlugin({
analyzerMode: 'static',
openAnalyzer: false
})
],
experiments: {
asyncWebAssembly: true
},
};