11{
22 "compilerOptions" : {
3- "outDir" : " build" ,
4- "allowUnreachableCode" : false ,
5- "allowUnusedLabels" : false ,
6- "esModuleInterop" : true ,
7- "importsNotUsedAsValues" : " error" ,
3+ "outDir" : " dist" ,
4+ "useDefineForClassFields" : true ,
5+ "allowSyntheticDefaultImports" : true ,
6+ "allowJs" : true ,
87 "forceConsistentCasingInFileNames" : true ,
9- "jsx" : " react" ,
10- "lib" : [" esnext" ],
118 "module" : " esnext" ,
12- "moduleResolution" : " node" ,
139 "noFallthroughCasesInSwitch" : true ,
14- "noImplicitReturns" : true ,
1510 "noImplicitUseStrict" : false ,
1611 "noStrictGenericChecks" : false ,
17- "noUnusedLocals" : true ,
18- "noUnusedParameters" : true ,
19- "declaration" : true ,
12+ "noUncheckedIndexedAccess" : true ,
2013 "resolveJsonModule" : true ,
21- "skipLibCheck " : true ,
14+ "skipDefaultLibCheck " : true ,
2215 "strict" : true ,
23- "target" : " esnext"
24- }
25- }
16+ "target" : " esnext" ,
17+ "lib" : [" dom" , " esnext" ],
18+ "jsx" : " react" ,
19+ "moduleResolution" : " node" ,
20+ "esModuleInterop" : true ,
21+ "typeRoots" : [
22+ " ./ts-declarations" ,
23+ " node_modules/@types"
24+ ],
25+ "declaration" : true ,
26+ "strictNullChecks" : true ,
27+ "strictPropertyInitialization" : true ,
28+ "strictFunctionTypes" : true ,
29+ "skipLibCheck" : true
30+ },
31+ "include" : [" src" ]
32+ }
0 commit comments