File tree 1 file changed +3
-6
lines changed 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change 2
2
"compilerOptions" : {
3
3
"target" : " es2017" ,
4
4
"module" : " commonjs" ,
5
- "removeComments" : false ,
6
- "preserveConstEnums" : true ,
7
5
"moduleResolution" : " node" ,
8
6
"experimentalDecorators" : true ,
7
+ "noEmit" : true ,
9
8
"noImplicitAny" : false ,
10
9
"allowSyntheticDefaultImports" : true ,
10
+ "declaration" : false , // fix IDE compile error(tsc --noEmit false --declaration true). ref: https://github.com/microsoft/TypeScript/issues/47663#issuecomment-1519138189
11
11
"outDir" : " lib" ,
12
- "noUnusedLocals" : true ,
13
- "noUnusedParameters" : true ,
14
12
"strictNullChecks" : true ,
15
- "sourceMap" : true ,
16
13
"rootDir" : " ." ,
17
14
"jsx" : " preserve" ,
15
+ "skipLibCheck" : true ,
18
16
"allowJs" : true ,
19
17
"resolveJsonModule" : true ,
20
- "typeRoots" : [" node_modules/@types" ],
21
18
"paths" : {
22
19
// TS5090 leading './'
23
20
"@/*" : [" ./src/*" ]
You can’t perform that action at this time.
0 commit comments