-
Notifications
You must be signed in to change notification settings - Fork 7
/
webpack.config.base.js
48 lines (44 loc) · 1.06 KB
/
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
41
42
43
44
45
46
47
48
/* eslint strict: 0 */
'use strict';
var path = require('path');
process.env.NODE_ENV = process.env.NODE_ENV || 'production';
//
// If you have some problems, such as
//
// ```
//
// ```
//
// please try install request package
//
// For more details, please check https://github.com/request/request/issues/1920#issuecomment-179904270
// and https://github.com/request/request/issues/1920#issuecomment-171246043
module.exports = {
noParse: /json-schema\/lib\/validate.js/,
module: {
loaders: [{
test: /\.jsx?$/,
loaders: ['babel-loader'],
exclude: /node_modules/
},
{
test: /\.json$/,
loader: 'json-loader'
}]
},
output: {
path: path.join(__dirname, 'dist'),
filename: 'bundle.js',
libraryTarget: 'umd'
},
resolve: {
extensions: ['', '.js', '.jsx', 'json'],
packageMains: ['webpack', 'browser', 'web', 'browserify', ['jam', 'main'], 'main']
},
plugins: [
],
externals: [
// put your node 3rd party libraries which can't be built with webpack here
// (mysql, mongodb, and so on..)
]
};