File tree Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"compilerOptions" : {
3
- "alwaysStrict " : true ,
4
- "noImplicitAny " : true ,
5
- "noImplicitThis " : true ,
6
- "strict " : true ,
3
+ "target " : " ES2021 " ,
4
+ "allowUnreachableCode " : false ,
5
+ "allowUnusedLabels " : false ,
6
+ "exactOptionalPropertyTypes " : true ,
7
7
"noFallthroughCasesInSwitch" : true ,
8
+ "noImplicitOverride" : true ,
8
9
"noImplicitReturns" : true ,
10
+ "noPropertyAccessFromIndexSignature" : true ,
11
+ "noUncheckedIndexedAccess" : true ,
9
12
"noUnusedLocals" : true ,
10
13
"noUnusedParameters" : true ,
14
+ "strict" : true ,
11
15
"module" : " CommonJS" ,
12
16
"moduleResolution" : " Node" ,
17
+ "esModuleInterop" : true ,
18
+ "lib" : [" ES2021" ],
13
19
"sourceMap" : true ,
14
20
"declaration" : true ,
15
21
"declarationMap" : true ,
16
- "lib" : [" ES2020" ],
17
22
"outDir" : " dist"
18
23
}
19
24
}
You can’t perform that action at this time.
0 commit comments