We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 220cd7d commit 992defcCopy full SHA for 992defc
builder/.babelrc
@@ -1,19 +1,20 @@
1
{
2
"presets": [
3
- ["env", {
4
- "modules": false,
5
- "forceAllTransforms": true,
6
- "targets": {
7
- "browsers": "> 1%",
8
- "uglify": true
9
- },
10
- "useBuiltIns": true
11
- }]
+ [
+ "@babel/preset-env",
+ {
+ "modules": "false",
+ "targets": "> 1%, not dead",
+ "useBuiltIns": "entry",
+ "corejs": {
+ "version": 3
+ },
12
+ "debug": true
13
+ }
14
+ ]
15
],
-
16
"plugins": [
- "syntax-dynamic-import",
- "transform-object-rest-spread",
17
- ["transform-class-properties", { "spec": true }]
+ "@babel/syntax-dynamic-import",
18
+ ["@babel/plugin-proposal-class-properties", { "loose": true }]
19
]
20
}
0 commit comments