-
Notifications
You must be signed in to change notification settings - Fork 7
/
webpack.config.js
61 lines (58 loc) · 1.72 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
55
56
57
58
59
60
61
/* --------------------------------------------------------------------------------------------
* Copyright (c) 2018 TypeFox GmbH (http://www.typefox.io). All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
* ------------------------------------------------------------------------------------------ */
const path = require('path');
const lib = path.resolve(__dirname, "lib");
const webpack = require('webpack');
const merge = require('webpack-merge');
const UglifyJSPlugin = require('uglifyjs-webpack-plugin');
const common = {
entry: {
"main": path.resolve(lib, "main.js"),
"editor.worker": 'monaco-editor-core/esm/vs/editor/editor.worker.js'
},
output: {
filename: '[name].bundle.js',
path: lib
},
module: {
rules: [{
test: /\.css$/,
use: ['style-loader', 'css-loader']
}]
},
target: 'web',
node: {
fs: 'empty',
child_process: 'empty',
net: 'empty',
crypto: 'empty'
},
resolve: {
alias: {
'vscode': require.resolve('monaco-languageclient/lib/vscode-compatibility')
}
}
};
if (process.env['NODE_ENV'] === 'production') {
module.exports = merge(common, {
plugins: [
new UglifyJSPlugin(),
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify('production')
})
]
});
} else {
module.exports = merge(common, {
devtool: 'source-map',
module: {
rules: [{
test: /\.js$/,
enforce: 'pre',
loader: 'source-map-loader'
}]
}
})
}