File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 651651 "ts-node" : " ^8.3.0" ,
652652 "ts-protoc-gen" : " ^0.9.0" ,
653653 "typescript" : " ^3.7.2" ,
654- "typescript-config" : " ^0.0.1" ,
655654 "typescript-formatter" : " ^7.2.2" ,
656655 "vsce" : " ^1.65.0" ,
657656 "vscode-test" : " ^1.4.0" ,
Original file line number Diff line number Diff line change 11{
2- "extends" : " ./node_modules/typescript-config/extension.tsconfig.json"
2+ "$schema" : " http://json.schemastore.org/tsconfig" ,
3+ "compilerOptions" : {
4+ "declaration" : true ,
5+ "strict" : true ,
6+ "module" : " commonjs" ,
7+ "target" : " es2017" ,
8+ "outDir" : " out" ,
9+ "lib" : [
10+ " es6"
11+ ],
12+ "moduleResolution" : " node" ,
13+ "sourceMap" : true ,
14+ "rootDir" : " src" ,
15+ "strictNullChecks" : true ,
16+ "noFallthroughCasesInSwitch" : true ,
17+ "preserveWatchOutput" : true ,
18+ "newLine" : " lf" ,
19+ "noImplicitReturns" : true ,
20+ "experimentalDecorators" : true ,
21+ "noUnusedLocals" : true ,
22+ "noUnusedParameters" : true
23+ },
24+ "include" : [
25+ " src/**/*.ts"
26+ ],
27+ "exclude" : [
28+ " node_modules" ,
29+ " test" ,
30+ " **/view"
31+ ]
332}
Original file line number Diff line number Diff line change 11{
2- "extends" : " ./node_modules/typescript-config/lib.tsconfig.json"
3- }
2+ "compilerOptions" : {
3+ "declaration" : true ,
4+ "module" : " commonjs" ,
5+ "target" : " es2017" ,
6+ "outDir" : " out" ,
7+ "lib" : [
8+ " es6"
9+ ],
10+ "moduleResolution" : " node" ,
11+ "sourceMap" : true ,
12+ "rootDir" : " src" ,
13+ "strictNullChecks" : true ,
14+ "noFallthroughCasesInSwitch" : true ,
15+ "preserveWatchOutput" : true ,
16+ "newLine" : " lf" ,
17+ "noImplicitReturns" : true ,
18+ "experimentalDecorators" : true ,
19+ "noUnusedLocals" : true ,
20+ "noUnusedParameters" : true
21+ },
22+ "include" : [
23+ " src/**/*.ts"
24+ ],
25+ "exclude" : [
26+ " node_modules" ,
27+ ]
28+ }
You can’t perform that action at this time.
0 commit comments