-
Notifications
You must be signed in to change notification settings - Fork 10
/
babel.config.js
63 lines (61 loc) · 1.59 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
56
57
58
59
60
61
62
63
let presets = [
[
'@babel/env',
{
loose: true,
modules: false
}
]
];
if (process.env['NODE_ENV'] === 'es5') {
presets = [
['@babel/env', {
targets: {
edge: '17',
firefox: '60',
chrome: '67',
safari: '11.1',
ie: '11'
},
useBuiltIns: false
}]
];
}
const plugins = [
['@babel/transform-template-literals', {
'loose': true
}],
'@babel/transform-literals',
'@babel/transform-function-name',
'@babel/transform-arrow-functions',
'@babel/transform-block-scoped-functions', ['@babel/transform-classes', {
'loose': true
}],
'@babel/transform-object-super',
'@babel/transform-shorthand-properties', ['@babel/transform-computed-properties', {
'loose': true
}],
['@babel/transform-for-of', {
'loose': true
}],
'@babel/transform-sticky-regex',
'@babel/transform-unicode-regex',
'@babel/check-constants', ['@babel/transform-spread', {
'loose': true
}],
'@babel/transform-parameters', ['@babel/transform-destructuring', {
'loose': true
}],
'@babel/transform-block-scoping',
'@babel/plugin-proposal-object-rest-spread',
'@babel/plugin-transform-member-expression-literals',
'@babel/transform-property-literals',
'@babel/transform-async-to-generator',
'@babel/transform-regenerator', ['@babel/transform-runtime', {
'regenerator': true
}]
];
module.exports = {
presets,
plugins
};