-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.base.js
45 lines (43 loc) · 1.08 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
/* eslint strict: 0 */
'use strict';
const path = require('path');
// const BowerWebpackPlugin = require("bower-webpack-plugin");
const webpack = require("webpack");
module.exports = {
module: {
loaders: [{
test: /\.jsx?$/,
loaders: ['babel-loader'],
exclude: /node_modules/
},{
include: /\.json$/,
loaders: ["json-loader"]
},{
test: /\.scss$/,
loaders: ["style", "css", "sass"]
}
]
},
output: {
path: path.join(__dirname, 'dist'),
filename: 'bundle.js',
libraryTarget: 'commonjs2'
},
resolve: {
extensions: ['', '.js', '.jsx'],
packageMains: ['webpack', 'browser', 'web', 'browserify', ['jam', 'main'], 'main']
},
plugins: [
// new BowerWebpackPlugin(),
// new webpack.ProvidePlugin({
// $: "jquery",
// jQuery: "jquery"
// })
new webpack.IgnorePlugin(/vertx/),
// new webpack.IgnorePlugin(/electroknit/)
],
externals: [
'electroknit'
// put your node 3rd party libraries which can't be built with webpack here (mysql, mongodb, and so on..)
]
};