-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
54 lines (45 loc) · 1016 Bytes
/
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
import path from 'path';
import webpack from 'webpack';
const noParse = [
/node_modules\/sinon\//
];
export default {
target: 'web',
name: 'my awesome app',
context: path.resolve(__dirname, 'src'),
module: {
noParse,
loaders: [
{
test: /\.jsx?$/,
include: [
path.resolve(__dirname, 'src'),
path.resolve(__dirname, 'test')
],
loader: 'babel'
},
],
},
plugins: [
new webpack.optimize.OccurenceOrderPlugin(true),
new webpack.optimize.DedupePlugin(),
new webpack.NoErrorsPlugin()
],
resolve: {
modulesDirectories: ['node_modules'],
extensions: [
'',
'.jsx',
'.js',
'.css',
'.scss',
'.json'
],
},
debug: true,
cache: true,
// source maps are loaded using karma-sourcemap-loader,
// for more info see https://github.com/webpack/karma-webpack#source-maps
// and https://github.com/webpack/karma-webpack#source-maps
devtool: 'inline-source-map'
}