File tree 1 file changed +13
-14
lines changed
1 file changed +13
-14
lines changed Original file line number Diff line number Diff line change 1
- // NOTE: The TypeScript compiler is only used for building the tests (and
2
- // the sources which the tests need). The extension is built with `esbuild`.
3
1
{
4
- "extends" : " @tsconfig/node20/tsconfig.json" ,
5
2
"compilerOptions" : {
6
- "sourceMap" : true ,
7
- "rootDir" : " ." ,
8
- "noFallthroughCasesInSwitch" : true ,
9
- "noImplicitOverride" : true ,
10
- "noImplicitReturns" : true ,
11
- "noUnusedLocals" : true ,
12
- "noUnusedParameters" : true ,
13
- "allowSyntheticDefaultImports" : true ,
14
- "useUnknownInCatchVariables" : true
3
+ "target" : " ESNext" ,
4
+ "esModuleInterop" : true ,
5
+ "skipLibCheck" : true ,
6
+ "allowJs" : true ,
7
+ "checkJs" : true ,
8
+ "resolveJsonModule" : true ,
9
+ "moduleDetection" : " force" ,
10
+ "verbatimModuleSyntax" : true ,
11
+ "strict" : true ,
12
+ "noEmit" : true ,
13
+ "module" : " Preserve"
15
14
},
16
- "include" : [ " src " , " test" ],
17
- "exclude" : [ " node_modules/@ungap/structured-clone " ]
15
+ "include" : [" **/*.ts " , " eslint.config.mjs " , " .vscode- test.mjs " ],
16
+ "exclude" : [" node_modules" ]
18
17
}
You can’t perform that action at this time.
0 commit comments