-
Notifications
You must be signed in to change notification settings - Fork 304
/
Copy path.babelrc
38 lines (38 loc) · 798 Bytes
/
.babelrc
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
{
"comments": false,
"sourceMaps": true,
"retainLines": true,
"presets": [
"env"
],
"env": {
"main": {
"presets": [
[
"env",
{
"targets": {
"node": "16.13.0"
}
}
]
]
},
"renderer": {
"presets": [
[
"env",
{
"targets": {
"electron": "13.6.2"
}
}
]
]
}
},
"plugins": [
"transform-runtime",
"transform-object-rest-spread"
]
}