-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathwebpack.config.js
44 lines (43 loc) · 1.04 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
const webpack = require('webpack');
const TerserPlugin = require('terser-webpack-plugin');
module.exports = {
mode: 'production',
context: __dirname + '/src',
entry: './crunker.ts',
output: {
path: __dirname + '/dist',
filename: 'crunker.js',
library: 'Crunker',
libraryTarget: 'umd',
umdNamedDefine: true,
globalObject: "typeof self !== 'undefined' ? self : this",
},
devtool: 'source-map',
module: {
rules: [
{
test: /\.ts$/,
exclude: /node_modules/,
loader: 'babel-loader',
options: {
presets: [
[
'@babel/preset-env',
{ exclude: ['@babel/plugin-transform-regenerator', '@babel/plugin-transform-async-to-generator'] },
],
'@babel/preset-typescript',
],
},
},
],
},
optimization: {
minimize: true,
minimizer: [new TerserPlugin()],
},
plugins: [
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV),
}),
],
};