File tree Expand file tree Collapse file tree 1 file changed +19
-13
lines changed
Expand file tree Collapse file tree 1 file changed +19
-13
lines changed Original file line number Diff line number Diff line change 11{
2- "compilerOptions" : {
3- "target" : " es5" ,
4- "module" : " commonjs" ,
5- "strict" : true ,
6- "esModuleInterop" : true ,
7- "skipLibCheck" : true ,
8- "forceConsistentCasingInFileNames" : true ,
9- "outDir" : " ./dist" ,
10- "rootDir" : " ./src"
11- },
12- "include" : [" src" ], // Changed to only include the src directory
13- "exclude" : [" dist" ]
14- }
2+ "compilerOptions" : {
3+ "allowSyntheticDefaultImports" : true ,
4+ "lib" : [" ES2022" , " DOM" ],
5+ "module" : " CommonJS" ,
6+ "moduleResolution" : " node" ,
7+ "target" : " ES2022" ,
8+ "forceConsistentCasingInFileNames" : true ,
9+ "strict" : true ,
10+ "noImplicitAny" : true ,
11+ "strictNullChecks" : true ,
12+ "skipLibCheck" : true ,
13+ "noImplicitOverride" : true ,
14+ "outDir" : " ./dist" ,
15+ "declaration" : true ,
16+ "declarationMap" : true
17+ },
18+ "include" : [" src" ],
19+ "exclude" : [" dist" ]
20+ }
You can’t perform that action at this time.
0 commit comments