-
Notifications
You must be signed in to change notification settings - Fork 16
/
webpack.dev.js
42 lines (40 loc) · 1 KB
/
webpack.dev.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 ESLintPlugin = require('eslint-webpack-plugin');
const config = {
mode: 'development',
entry: {
loam: path.join(__dirname, 'src', 'index.js'),
'loam-worker': path.join(__dirname, 'src', 'worker.js'),
},
output: {
path: path.join(__dirname, 'lib'),
filename: '[name].js',
library: {
name: 'loam',
type: 'umd',
umdNamedDefine: true,
},
},
module: {
rules: [
{
test: /(\.js)$/,
loader: 'babel-loader',
exclude: /node_modules/,
},
],
},
resolve: {
modules: [path.resolve('./node_modules'), path.resolve('./src')],
extensions: ['.json', '.js'],
},
plugins: [new ESLintPlugin()],
devtool: 'source-map',
devServer: {
static: {
directory: path.join(__dirname, 'demo'),
watch: true,
},
},
};
module.exports = config;