-
Notifications
You must be signed in to change notification settings - Fork 12
/
babel.config.json
63 lines (63 loc) · 1.23 KB
/
babel.config.json
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
{
"presets": [
"@babel/preset-react",
"@babel/preset-typescript"
],
"plugins": [
"@babel/plugin-syntax-dynamic-import",
"@babel/plugin-syntax-import-meta"
],
"env": {
"production:cjs": {
"ignore": [
"**/__tests__"
],
"plugins": [
"@babel/plugin-transform-runtime"
],
"presets": [
[
"@babel/preset-env",
{
"modules": "cjs",
"targets": {
"node": "12"
}
}
]
],
"sourceMaps": "inline"
},
"production:esm": {
"ignore": [
"**/__tests__"
],
"presets": [
[
"@babel/preset-env",
{
"targets": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 safari versions",
"last 2 and_chr versions",
"last 2 ios_saf versions",
"edge >= 18"
],
"modules": false,
"loose": true
}
]
],
"sourceMaps": "inline"
},
"test": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-transform-runtime"
]
}
}
}