-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathwebpack.config.js
More file actions
48 lines (46 loc) · 953 Bytes
/
webpack.config.js
File metadata and controls
48 lines (46 loc) · 953 Bytes
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
// so dogfood
const getEnv = require('../..');
const env = getEnv();
const webpack = require('webpack')
const path = require('path');
module.exports = {
devtool: 'inline-source-map',
module: {
noParse: [
/node_modules(\\|\/)sinon/
],
loaders: [
{
test: /\.json$/,
loader: 'json-loader'
},
{
test: /\.js$/,
include: [
path.resolve(process.cwd(), 'src'),
path.resolve(process.cwd(), 'test')
],
loader: 'babel-loader'
},
{
test: /sinon(\\|\/)pkg(\\|\/)sinon\.js/,
loader: 'imports?define=>false,require=>false'
}
]
},
plugins: [
// Note `#getPublicEnv` util
new webpack.DefinePlugin({
NODE_ENV: process.env.NODE_ENV,
'process.env': env.utils.getPublicEnv([
'NODE_ENV',
'CLIENT'
])
})
],
resolve: {
alias: {
sinon: 'sinon/pkg/sinon'
}
}
};