-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
46 lines (44 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
43
44
45
46
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
const DashboardPlugin = require('webpack-dashboard/plugin');
const nodeExternals = require('webpack-node-externals');
const path = require('path');
const webpack = require('webpack');
module.exports = {
// devtool: 'source-map',
entry: [
'babel-polyfill',
'webpack/hot/dev-server',
'./src',
],
output: {
path: path.resolve('./dist'),
filename: 'index.js',
library: 'weightedPick',
libraryTarget: 'umd',
umdNamedDefine: true,
},
target: 'node',
externals: [nodeExternals()],
resolve: {
modulesDirectories: ['node_modules'],
extensions: ['', '.js'],
},
module: {
loaders: [
{
test: [/\.js?$/],
exclude: [/node_modules/, '/**/*.test.js'],
loader: 'babel',
query: {
presets: ['env'],
},
},
],
},
plugins: [
new webpack.NoErrorsPlugin(),
new webpack.HotModuleReplacementPlugin(),
new BundleAnalyzerPlugin(),
new DashboardPlugin(),
],
};