File tree Expand file tree Collapse file tree 3 files changed +26
-30
lines changed Expand file tree Collapse file tree 3 files changed +26
-30
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ {
2
+ "extends" : " ./tsconfig"
3
+ }
Original file line number Diff line number Diff line change 1
-
2
1
{
3
- "extends" : " ./tsconfig.base" ,
4
- "exclude" : [" example" ]
2
+ "exclude" : [" example" ],
3
+ "compilerOptions" : {
4
+ "baseUrl" : " ./" ,
5
+ "allowUnreachableCode" : false ,
6
+ "allowUnusedLabels" : false ,
7
+ "esModuleInterop" : true ,
8
+ "importsNotUsedAsValues" : " error" ,
9
+ "forceConsistentCasingInFileNames" : true ,
10
+ "jsx" : " react" ,
11
+ "lib" : [" esnext" ],
12
+ "module" : " esnext" ,
13
+ "moduleResolution" : " node" ,
14
+ "noFallthroughCasesInSwitch" : true ,
15
+ "noImplicitReturns" : true ,
16
+ "noImplicitUseStrict" : false ,
17
+ "noStrictGenericChecks" : false ,
18
+ "noUnusedLocals" : true ,
19
+ "noUnusedParameters" : true ,
20
+ "resolveJsonModule" : true ,
21
+ "skipLibCheck" : true ,
22
+ "strict" : true ,
23
+ "target" : " esnext"
24
+ }
5
25
}
You can’t perform that action at this time.
0 commit comments