forked from react-bootstrap/react-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.config.js
More file actions
41 lines (32 loc) · 743 Bytes
/
base.config.js
File metadata and controls
41 lines (32 loc) · 743 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
import webpack from 'webpack';
import yargs from 'yargs';
export const options = yargs
.alias('p', 'optimize-minimize')
.alias('d', 'debug')
.option('port', {
default: '8080',
type: 'string'
})
.argv;
export const jsLoader = 'babel?cacheDirectory';
const baseConfig = {
entry: undefined,
output: undefined,
externals: undefined,
module: {
loaders: [
{ test: /\.js/, loader: jsLoader, exclude: /node_modules/ }
]
},
plugins: [
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify(options.optimizeMinimize ? 'production' : 'development')
}
})
]
};
if (options.optimizeMinimize) {
baseConfig.devtool = 'source-map';
}
export default baseConfig;