-
Notifications
You must be signed in to change notification settings - Fork 0
/
babel.config.js
55 lines (51 loc) · 1.09 KB
/
babel.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
module.exports = function (api) {
api.cache(true)
const isProd = process.env.NODE_ENV === 'production'
const presets = [
'@babel/preset-react',
[
'@babel/preset-env',
{
loose: true,
targets: {
browsers: ['last 2 versions', 'ie >= 11', 'safari >= 7'],
},
useBuiltIns: 'entry',
},
],
]
const plugins = [
'@babel/plugin-syntax-dynamic-import',
['@babel/plugin-proposal-decorators', { legacy: true }],
['@babel/plugin-proposal-class-properties', { loose: true }],
[
'@babel/plugin-transform-runtime',
{
corejs: false,
},
],
'react-hot-loader/babel',
]
if (isProd) {
plugins.push(
[
'module:fast-async',
{
compiler: {
promises: true,
generators: false,
},
runtimePattern: null,
useRuntimeModule: false,
},
],
'transform-react-remove-prop-types',
)
} else {
plugins.push('@babel/plugin-syntax-object-rest-spread')
}
return {
presets,
plugins,
}
}