-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwebpack.config.js
54 lines (52 loc) · 1.26 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 path = require('path');
module.exports = {
// mode: "development",
entry: {
'main': './src/js/main.ts',
// 'main.min': './src/js/main.ts',
'embedded_exercises': './src/js/embedded_exercises.ts',
// 'exercises.min': './src/js/exercises.ts',
'regression': './src/js/test/regression.ts',
// 'regression.min': './src/js/test/regression.ts'
},
output: {
path: path.join(__dirname, '/public/js/'),
filename: '[name].js',
libraryTarget: 'umd',
library: 'Lobster',
umdNamedDefine: true
},
optimization: {
minimize: false
},
devtool: "source-map",
// optimization: {
// minimizer: [
// new TerserPlugin({
// cache: true,
// parallel: true,
// sourceMap: true, // Must be set to true if using source-maps in production
// terserOptions: {
// // https://github.com/webpack-contrib/terser-webpack-plugin#terseroptions
// },
// include: /\.min\.js$/,
// }),
// ]
// },
module: {
rules: [
{
test: /\.tsx?$/,
loader: 'ts-loader',
exclude: /node_modules/
},
{
test: /\.css$/,
use: ['style-loader', 'css-loader']
}
]
},
resolve: {
extensions: [ '.tsx', '.ts', '.js' ]
}
};