File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed
Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "compilerOptions" : {
3+ "module" : " commonjs" ,
4+ "moduleResolution" : " node" ,
5+ "target" : " es2018" ,
6+ "outDir" : " out" , /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
7+ "lib" : [
8+ " es6" ,
9+ " es2018" ,
10+ " dom" ,
11+ " ES2019" ,
12+ " ES2020"
13+ ],
14+ "sourceMap" : true ,
15+ "rootDir" : " src" ,
16+ "experimentalDecorators" : true ,
17+ "allowSyntheticDefaultImports" : true ,
18+ "strict" : true ,
19+ "noImplicitAny" : true ,
20+ "noImplicitThis" : true ,
21+ "noUnusedLocals" : true ,
22+ "noUnusedParameters" : true ,
23+ "noFallthroughCasesInSwitch" : true ,
24+ "removeComments" : true ,
25+ "declaration" : true
26+ },
27+ "exclude" : [
28+ " node_modules" ,
29+ " .vscode-test" ,
30+ " .vscode test" ,
31+ " build" ,
32+ " out" ,
33+ " tmp"
34+ ]
35+ }
You can’t perform that action at this time.
0 commit comments