-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathwebpack.config.ts
52 lines (41 loc) · 1.26 KB
/
webpack.config.ts
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
// Using typescript configuration is now supported.
// See https://webpack.js.org/configuration/configuration-languages/#typescript
import path from 'path';
import webpack from 'webpack';
const configCallback = (env: {[key: string]: string}, argv: webpack.Configuration): webpack.Configuration => {
const mode = argv.mode || 'development';
console.log('running webpack with mode:', mode);
const config: webpack.Configuration = {
mode,
entry: {
main: './main.ts',
},
// This tells webpack to not mess up with nodejs native packages
// See https://github.com/webpack-contrib/css-loader/issues/447#issuecomment-308918678
target: 'node',
node: {
// Do not use publicPath to overwrite __dirname, which is confusing
__dirname: false,
},
output: {
filename: mode === 'production' ? '[name].min.js' : '[name].js',
path: path.resolve(__dirname, 'dist'),
libraryTarget: 'commonjs',
},
resolve: {
extensions: ['.ts', '.js'],
},
module: {
rules: [{
test: /\.tsx?$/,
loader: 'ts-loader',
exclude: /node_modules/,
}],
},
};
if (mode === 'development') {
config.devtool = 'inline-source-map';
}
return config;
};
export default configCallback;