-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwebpack.config.js
42 lines (41 loc) · 1.05 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
const path = require('path')
const TerserPlugin = require('terser-webpack-plugin')
module.exports = {
entry: {
'spectroplot': path.resolve(__dirname, 'index.js'),
'spectroplot.min': path.resolve(__dirname, 'index.js'),
'spectroplot.worker': path.resolve(__dirname, 'lib/worker.js'),
'spectroplot.worker.min': path.resolve(__dirname, 'lib/worker.js'),
},
devtool: 'source-map',
devServer: {
static: {
directory: path.join(__dirname, 'lib'),
},
},
output: {
path: path.resolve(__dirname, 'dist'),
filename: '[name].js',
//library: '$', // omitting library will result in the assignment of all properties returned by the entry point be assigned directly to the root object
libraryTarget: 'umd',
},
module: {
rules: [
{
test: /\.(js)$/,
exclude: /node_modules/,
use: 'babel-loader',
},
],
},
mode: 'development',
optimization: {
minimize: true,
minimizer: [
new TerserPlugin({
parallel: true,
include: /\.min\.js$/
})
]
}
}