forked from stoufa88/lawd-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.base.js
40 lines (38 loc) · 955 Bytes
/
webpack.config.base.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
const path = require('path');
module.exports = {
target: 'electron',
module: {
noParse: [/node_modules\/json-schema\/lib\/validate\.js/, 'ws'],
loaders: [
{
test: /\.js$/,
exclude: /(node_modules|bower_components)/,
loader: 'babel',
query: {
presets: ['es2015']
}
},
{ test: /\.json$/, loader: 'json-loader' },
{ test: /\.(jpe|jpg|woff|woff2|eot|ttf|svg)(\?.*$|$)/, loader: 'url-loader?importLoaders=1&limit=100000' },
{ test: /\.vue$/, loader: 'vue' }
]
},
output: {
path: path.join(__dirname, 'dist'),
filename: 'bundle.js',
libraryTarget: 'commonjs2'
},
resolve: {
extensions: ['', '.js'],
root: path.resolve('./node_modules/')
},
plugins: [
],
externals: [
'ws',
'video.js',
'googleapis'
// put your node 3rd party libraries which can't be built with webpack here
// (mysql, mongodb, and so on..)
]
};