Files
vscode-extension-samples/chat-model-provider-sample/tsconfig.json
2025-08-27 15:49:50 -04:00

19 lines
603 B
JSON

{
"compilerOptions": {
"module": "Node16",
"target": "ES2024",
"lib": [
"ES2024"
],
"sourceMap": true,
"rootDir": "src",
"strict": true, /* enable all strict type-checking options */
"outDir": "out",
"skipLibCheck": true /* Skip type checking of declaration files */
/* 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. */
}
}