Files
vscode-extension-samples/helloworld-web-sample/tsconfig.json

22 lines
608 B
JSON
Raw Normal View History

2021-08-20 12:04:40 +02:00
{
"compilerOptions": {
"module": "commonjs",
"target": "ES2024",
2021-08-20 12:04:40 +02:00
"outDir": "dist",
"lib": [
"ES2024",
"WebWorker"
2021-08-20 12:04:40 +02:00
],
"sourceMap": true,
"rootDir": "src",
"strict": true /* enable all strict type-checking options */
2021-08-20 12:04:40 +02:00
/* Additional Checks */
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
// "noUnusedParameters": true, /* Report errors on unused parameters. */
},
"exclude": [
"node_modules",
".vscode-test-web"
]
}