-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathwebpack.dev.config.js
86 lines (78 loc) · 1.68 KB
/
webpack.dev.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
const path = require('path');
const webpack = require('webpack');
module.exports = {
mode: 'development',
module: {
rules: [
{
test: [/\.scss/, /\.css/],
use: [
'style-loader',
{
loader: 'css-loader',
options: {
url: false,
sourceMap: true,
importLoaders: 2
},
},
{
loader: 'sass-loader',
options: {
sourceMap: true,
}
}
],
},
{
test: /\.js$/,
use: 'babel-loader',
exclude: /node_modules/
},
{
test: /\.worker\.js$/,
use: {
loader: 'worker-loader',
options: {
filename: '[name].worker.js'
}
}
}
],
},
entry: './src/js/main.js',
output: {
path: path.resolve(__dirname, 'dest/js/'),
filename: '[name].min.js?ver=' + new Date().getTime(),
publicPath: '/js/'
},
devtool: 'source-map',
plugins: [
new webpack.DefinePlugin({
'process.env.DEVELOPMENT': JSON.stringify(true),
'process.env.BUILD_TIMESTAMP': JSON.stringify(new Date().getTime()),
'process.env.DISABLE_HOT': JSON.stringify(true)
}),
new webpack.WatchIgnorePlugin({
paths: [
/\.d\.ts$/,
/node_modules/,
/editor_hotkeys\.js$/
]
})
],
watchOptions: {
ignored: [
'**/node_modules/**',
'**/*.log',
'**/src/js/editor/editor_hotkeys.js'
],
poll: 3000
},
resolve: {
extensions: ['.js'],
alias: {
'monaco-editor': path.resolve(__dirname, 'node_modules/monaco-editor')
}
}
};