-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
100 lines (94 loc) · 2.04 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
const webpack = require('webpack')
const merge = require('webpack-merge')
const CaseSensitivePathsPlugin = require('case-sensitive-paths-webpack-plugin')
const TARGET = process.env.NODE_ENV
const isProd = TARGET === 'production'
const config = {}
config.common = {
context: __dirname + '/src/script',
plugins: [
new webpack.EnvironmentPlugin(['NODE_ENV']),
new webpack.NoEmitOnErrorsPlugin(),
new CaseSensitivePathsPlugin(),
new webpack.optimize.CommonsChunkPlugin({
name: 'vendor',
minChunks: Infinity,
}),
new webpack.optimize.UglifyJsPlugin({
mangle: isProd,
compress: true,
parallel: {
cache: true,
workers: 4,
},
output: {
comments: !isProd,
beautify: !isProd,
},
}),
],
resolve: {
modules: ['node_modules'],
extensions: ['.ts', '.tsx'],
alias: {
app: __dirname + '/src/script/app',
},
},
}
config.test = merge(config.common, {
devtool: 'cheap-module-eval-source-map',
externals: {
'react/lib/ExecutionEnvironment': 'react',
'react/lib/ReactContext': 'react',
},
module: {
rules: [
{
test: /\.tsx?$/,
exclude: ['node_modules'],
use: [
{ loader: 'babel-loader' },
{ loader: 'ts-loader' },
],
},
],
},
})
config.production = merge(config.common, {
entry: {
app: __dirname + '/src/script/app/index.tsx',
vendor: [
'react',
'react-dom',
],
},
output: {
filename: '[name].js',
path: __dirname + '/public/js',
jsonpFunction: 'vendor',
},
module: {
rules: [
{
test: /\.tsx?$/,
exclude: ['node_modules', /\.test\.tsx?$/],
use: [
{ loader: 'babel-loader' },
{ loader: 'ts-loader' },
],
},
],
},
})
config.development = merge(config.production, {
devtool: 'cheap-module-eval-source-map',
output: {
pathinfo: true,
},
stats: {
errorDetails: true,
colors: true,
},
watch: true,
})
module.exports = config[TARGET]