Files
vscode-extension-samples/chat-model-provider-sample/tsconfig.json
2025-07-24 09:30:34 -07:00

26 lines
711 B
JSON

{
"compilerOptions": {
"module": "Node16",
"target": "ES2022",
"lib": [
"ES2022"
],
"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. */
},
"include": [
"src/**/*",
"vscode.proposed.chatProvider.d.ts"
],
"exclude": [
"vscode.d.ts"
]
}