File tree Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "compilerOptions" : {
3+ "baseUrl" : " ." ,
4+ "paths" : {
5+ "@/*" : [" ./*" ]
6+ },
7+ "allowJs" : false ,
8+ "alwaysStrict" : true ,
9+ "exactOptionalPropertyTypes" : true ,
10+ "noPropertyAccessFromIndexSignature" : true ,
11+ "noImplicitAny" : true ,
12+ "noImplicitReturns" : true ,
13+ "noImplicitOverride" : true ,
14+ "noFallthroughCasesInSwitch" : true ,
15+ "allowUnreachableCode" : false ,
16+ "allowUnusedLabels" : false ,
17+ "noImplicitThis" : true ,
18+ "noUnusedLocals" : true ,
19+ "noUnusedParameters" : true ,
20+ "forceConsistentCasingInFileNames" : true ,
21+ "skipLibCheck" : true ,
22+ "strict" : true ,
23+ "noEmit" : true ,
24+ "incremental" : true ,
25+ "module" : " esnext" ,
26+ "esModuleInterop" : true ,
27+ "moduleResolution" : " node" ,
28+ "resolveJsonModule" : true ,
29+ "isolatedModules" : true ,
30+ "jsx" : " preserve"
31+ },
32+ "include" : [
33+ " **/*.ts" ,
34+ " **/*.tsx"
35+ ],
36+ "exclude" : [
37+ " node_modules"
38+ ]
39+ }
You can’t perform that action at this time.
0 commit comments