-
Notifications
You must be signed in to change notification settings - Fork 17
/
webpack.config.js
71 lines (60 loc) · 1.7 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
62
63
64
65
66
67
68
69
70
71
/*
This program and the accompanying materials are
made available under the terms of the Eclipse Public License v2.0 which accompanies
this distribution, and is available at https://www.eclipse.org/legal/epl-v20.html
SPDX-License-Identifier: EPL-2.0
Copyright Contributors to the Zowe Project.
*/
var path = require('path');
var webpackConfig = require('webpack-config');
var CopyWebpackPlugin = require('copy-webpack-plugin');
if (process.env.MVD_DESKTOP_DIR == null) {
throw new Error('You must specify MVD_DESKTOP_DIR in your environment');
}
var config = {
'entry': [
path.resolve(__dirname, './src/plugin.ts')
],
'output': {
'path': path.resolve(__dirname, 'dist'),
'filename': 'main.js',
},
'module': {
'rules': [{
test: /\.svg$/,
loader: 'svg-inline-loader'
},
{
test: /\.scss$/,
'use': [
'exports-loader?module.exports.toString()',
{
'loader': 'css-loader',
'options': {
'sourceMap': false
}
},
'sass-loader'
]
}
],
},
'plugins': [
new CopyWebpackPlugin({patterns:[
{
from: path.resolve(__dirname, './src/assets'),
to: path.resolve('./dist/assets')
}
]})
]
};
module.exports = new webpackConfig.Config()
.extend(path.resolve(process.env.MVD_DESKTOP_DIR, 'plugin-config/webpack.base.js'))
.merge(config);
/*
This program and the accompanying materials are
made available under the terms of the Eclipse Public License v2.0 which accompanies
this distribution, and is available at https://www.eclipse.org/legal/epl-v20.html
SPDX-License-Identifier: EPL-2.0
Copyright Contributors to the Zowe Project.
*/