UNPKG

350 BJSONView Raw
1{
2 "presets": [
3 [
4 "@babel/preset-env",
5 {
6 "targets": {
7 "node": "current"
8 }
9 }
10 ]
11 ],
12 "plugins": [
13 "@babel/plugin-proposal-class-properties",
14 "@babel/plugin-transform-runtime",
15 [
16 "module-resolver",
17 {
18 "alias": {
19 "src": "./src"
20 }
21 }
22 ]
23 ]
24}