forked from EphemeralElixir/Unplanned
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
45 lines (44 loc) · 1.13 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
const debug = process.env.NODE_ENV !== 'production';
const webpack = require('webpack');
const path = require('path');
module.exports = {
context: path.join(__dirname, ''),
devtool: debug ? 'inline-sourcemap' : null,
entry: ['webpack-hot-middleware/client', './client/webpackEntry.js'],
module: {
preLoaders: [
{
test: /\.jsx?$/,
loader: 'eslint',
exclude: /(node_modules|bower_components)/,
},
],
loaders: [
{
test: /\.jsx?$/,
exclude: /(node_modules|bower_components)/,
loader: 'babel-loader',
query: {
presets: ['react', 'es2015'],
},
},
],
},
output: {
path: `${__dirname}/client/public`,
filename: 'webpack.min.js',
},
eslint: {
failOnWarning: false,
failOnError: true,
},
plugins: debug ? [
new webpack.optimize.OccurrenceOrderPlugin(),
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin(),
] : [
new webpack.optimize.DedupePlugin(),
new webpack.optimize.OccurenceOrderPlugin(),
new webpack.optimize.UglifyJsPlugin({ mangle: false, sourcemap: false }),
],
};