File tree 2 files changed +34
-10
lines changed
2 files changed +34
-10
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"presets" : [
3
- " @babel/preset-env" ,
4
- " @babel/preset-react" ,
5
- " mobx"
3
+ [
4
+ " @babel/preset-env" ,
5
+ {
6
+ "useBuiltIns" : " usage" ,
7
+ "corejs" : 2 ,
8
+ "target" : {
9
+ "edge" : 70 ,
10
+ "chrome" : 67
11
+ }
12
+ }
13
+ ],
14
+ " @babel/preset-react"
6
15
],
7
16
"plugins" : [
8
17
" @babel/plugin-proposal-object-rest-spread" ,
9
18
" @babel/plugin-transform-runtime" ,
10
- [" @babel/plugin-proposal-class-properties" , { "loose" : false }],
11
- [" @babel/plugin-proposal-private-property-in-object" , { "loose" : false }],
12
- [" @babel/plugin-proposal-private-methods" , { "loose" : false }]
19
+ [
20
+ " @babel/plugin-proposal-class-properties" ,
21
+ {
22
+ "loose" : false
23
+ }
24
+ ],
25
+ [
26
+ " @babel/plugin-proposal-private-property-in-object" ,
27
+ {
28
+ "loose" : false
29
+ }
30
+ ],
31
+ [
32
+ " @babel/plugin-proposal-private-methods" ,
33
+ {
34
+ "loose" : false
35
+ }
36
+ ]
13
37
]
14
38
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"compilerOptions" : {
3
3
"lib" : [
4
- " ES2015 "
4
+ " ES5 "
5
5
],
6
- "target" : " es2015 " ,
7
- "module" : " es2015 " ,
6
+ "target" : " ES5 " ,
7
+ "module" : " ES2015 " ,
8
8
"strict" : true ,
9
9
"typeRoots" : [
10
10
" src/types" ,
11
- " node_modules/@types" ,
11
+ " node_modules/@types"
12
12
],
13
13
"outDir" : " build" ,
14
14
"forceConsistentCasingInFileNames" : true ,
You can’t perform that action at this time.
0 commit comments