UNPKG

773 BPlain TextView Raw
1{
2 "presets": [
3 [
4 "@babel/preset-env",
5 {
6 "targets": {
7 "node": "10"
8 }
9 }
10 ]
11 ],
12 "plugins": [
13 "source-map-support",
14 "@babel/plugin-transform-runtime",
15 "@babel/plugin-syntax-bigint",
16 "@babel/plugin-proposal-nullish-coalescing-operator",
17 "@babel/plugin-proposal-numeric-separator",
18 "@babel/plugin-proposal-optional-chaining",
19 ["@babel/plugin-proposal-private-methods", {"loose": true}],
20 ["@babel/plugin-proposal-class-properties", {"loose": true}]
21 ],
22 "comments": false,
23 "env": {
24 "coverage": {
25 "plugins": [
26 [
27 "istanbul",
28 {
29 "exclude": [
30 "test",
31 "build"
32 ]
33 }
34 ]
35 ]
36 }
37 }
38}