Files
vscode-extension-samples/authenticationprovider-sample/tsconfig.json

22 lines
597 B
JSON
Raw Normal View History

2021-09-23 21:35:08 -07:00
{
"compilerOptions": {
"module": "commonjs",
"target": "ES2024",
2021-09-23 21:35:08 -07:00
"outDir": "out",
"lib": [
"ES2024",
2021-09-23 21:35:08 -07:00
"DOM"
],
"sourceMap": true,
"rootDir": "src",
"strict": true /* enable all strict type-checking options */
2021-09-23 21:35:08 -07: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"
]
}