-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-babel.config.json
46 lines (46 loc) · 1.02 KB
/
test-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
{
"plugins": [
["@babel/plugin-commonjs"]
],
"presets": [
[
"@babel/preset-env",
{
"targets":{},
"bugfixes":false,
"spec":false,
"modules":"umd",
"debug":false,
"include":[],
"exclude":[],
"useBuiltins":false,
"corejs":"3.27",
"forceAllTransforms":false,
"ignoreBrowserslistConfig":false,
"browserslistEnv":">.01%, not dead, last 2 node major versions",
"shippedProposals":false
}
]
],
"targets":{
"esmodules":true
},
"generatorOpts":{
"comments": true,
"concise":false,
"jsonCompatibleStrings":false,
"minified":false,
"retainFunctionParens": false,
"retainLines": false,
"sourceMaps":false
},
"parserOpts":{
"allowImportExportEverywhere": false,
"allowAwaitOutsideFunction":false,
"allowReturnOutsideFunction":false,
"allowSuperOutsideMethod":false,
"allowUndeclaredExports":false,
"attachComment":true,
"sourceType":"module"
}
}