-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwebpack.config.babel.js
64 lines (63 loc) · 1.53 KB
/
webpack.config.babel.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
const { resolve } = require('path');
const UglifyJSPlugin = require('uglifyjs-webpack-plugin');
const dist = resolve('dist');
module.exports = {
entry: './client/js/index.js',
module: {
rules: [
{
test: /\.jsx?/i,
exclude: /node_modules/,
loader: 'babel-loader',
}
],
loaders: [
{
test: /\.jsx?/i,
exclude: /node_modules/,
loader: 'babel-loader',
query: {
presets: [
['env', {
'targets': {
'browsers': [
'last 2 Chrome versions',
'last 2 Firefox versions',
'last 2 Safari versions',
'last 2 Edge versions',
'last 2 iOS versions',
'last 2 ChromeAndroid versions'
]
}
}],
'stage-0'
]
}
}
]
},
plugins: [
new UglifyJSPlugin({
uglifyOptions: {
keep_fargs: false,
passes: 3
}
})
],
output: {
filename: 'bundle.js',
path: dist
},
resolve: {
alias: {
"react-dom/server": "preact-render-to-string",
"react-dom/test-utils": "preact-test-utils",
"react-dom": "preact-compat-enzyme",
"react-test-renderer/shallow": "preact-test-utils",
"react-test-renderer": "preact-test-utils",
"react-addons-test-utils": "preact-test-utils",
"react-addons-transition-group": "preact-transition-group",
"react": "preact-compat-enzyme"
}
}
}