-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.babelrc
36 lines (36 loc) · 994 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
30
31
32
33
34
35
36
{
"assumptions": {
"constantSuper": true,
"constantReexports": true,
"enumerableModuleMeta": true,
"ignoreFunctionLength": true,
"ignoreToPrimitiveHint": true,
"noClassCalls": true,
"noDocumentAll": true,
"noNewArrows": false,
"privateFieldsAsProperties": true,
"pureGetters": true,
"setClassMethods": false,
"setComputedProperties": true,
"setPublicClassFields": true,
"setSpreadProperties": true
},
"presets": ["@babel/preset-env", "@babel/preset-react"],
"plugins": [],
"env": {
"development": {
"plugins": [
["@babel/plugin-proposal-class-properties"],
// ["@babel/plugin-proposal-object-rest-spread", false],
["@babel/plugin-syntax-dynamic-import"]
]
},
"production": {
"plugins": [
["@babel/plugin-proposal-class-properties"],
// ["@babel/plugin-proposal-object-rest-spread", false],
["@babel/plugin-syntax-dynamic-import"]
]
}
}
}