This repository has been archived by the owner on Oct 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbabel.config.js
105 lines (101 loc) · 1.94 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
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
101
102
103
104
105
let plugins = [
"@babel/plugin-transform-typescript",
"transform-class-properties",
[
"@babel/transform-template-literals",
{
loose: true,
},
],
"@babel/transform-literals",
"@babel/transform-function-name",
"@babel/transform-arrow-functions",
"@babel/transform-block-scoped-functions",
"@babel/plugin-proposal-optional-chaining",
[
"@babel/plugin-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/transform-spread",
{
loose: true,
},
],
"@babel/transform-parameters",
[
"@babel/transform-destructuring",
{
loose: true,
},
],
"@babel/transform-block-scoping",
"@babel/plugin-transform-member-expression-literals",
"@babel/transform-property-literals",
"@babel/transform-async-to-generator",
"@babel/transform-regenerator",
[
"@babel/transform-runtime",
{
regenerator: true,
},
],
"@babel/proposal-class-properties",
"@babel/proposal-object-rest-spread",
];
let presets = [
[
"@babel/typescript",
{
loose: true,
modules: false,
},
],
];
if (process.env["NODE_ENV"] === "test") {
presets = [
["@babel/preset-env", { targets: { node: "current" } }],
"@babel/preset-typescript",
];
plugins = [];
}
if (process.env["NODE_ENV"] === "es5") {
presets = [
[
"@babel/typescript",
{
targets: {
edge: "17",
firefox: "60",
chrome: "67",
safari: "11.1",
ie: "11",
},
useBuiltIns: false,
},
],
];
plugins.unshift("@babel/plugin-transform-modules-commonjs");
}
module.exports = {
presets,
plugins,
};