File tree 2 files changed +11
-5
lines changed
2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 2
2
"root" : true ,
3
3
"parser" : " @typescript-eslint/parser" ,
4
4
"parserOptions" : {
5
- "ecmaVersion" : 2019
5
+ "ecmaVersion" : 2020
6
6
},
7
7
"plugins" : [
8
8
" simple-import-sort" ,
Original file line number Diff line number Diff line change 4
4
"checkJs" : false ,
5
5
"strict" : true ,
6
6
"alwaysStrict" : true ,
7
- "target" : " ES2019 " ,
7
+ "target" : " ES2020 " ,
8
8
"module" : " commonJS" ,
9
9
"moduleResolution" : " node" ,
10
10
"skipLibCheck" : true ,
11
- "lib" : [" es2020" ],
11
+ "lib" : [
12
+ " es2020"
13
+ ],
12
14
// We don't make use of tslib helpers, all syntax used is supported by target engine
13
15
"importHelpers" : false ,
14
16
"noEmitHelpers" : true ,
25
27
// we include sources in the release
26
28
"inlineSources" : false ,
27
29
// Prevents web types from being suggested by vscode.
28
- "types" : [" node" ],
30
+ "types" : [
31
+ " node"
32
+ ],
29
33
"forceConsistentCasingInFileNames" : true ,
30
34
"noImplicitOverride" : true ,
31
35
"noImplicitReturns" : true ,
36
40
"transpileOnly" : true ,
37
41
"compiler" : " typescript-cached-transpile"
38
42
},
39
- "include" : [" src/**/*" ]
43
+ "include" : [
44
+ " src/**/*"
45
+ ]
40
46
}
You can’t perform that action at this time.
0 commit comments