-
Notifications
You must be signed in to change notification settings - Fork 0
/
.babelrc
29 lines (27 loc) · 854 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
{
"presets": ["@babel/react", ["@babel/preset-env", {
"useBuiltIns": "usage",
"shippedProposals": true,
"debug": false,
"include": ["es7.promise.finally", "es7.symbol.async-iterator", "es6.array.sort"],
"modules": "auto",
}]
],
"plugins": ["@babel/transform-runtime","@babel/plugin-proposal-class-properties","syntax-dynamic-import","syntax-object-rest-spread"],
"sourceMaps": true,
"retainLines": true
}
// {
// "presets": ["@babel/react", ["@babel/preset-env", {
// "useBuiltIns": false,
// "debug": true,
// "modules": false,
// "targets": {
// "node": "current"
// }
// }]
// ],
// "plugins": ["syntax-dynamic-import","syntax-object-rest-spread"],
// "sourceMaps": true,
// "retainLines": true
// }