Files
vscode/extensions/copilot/tsconfig.base.json
T
kieferrm 333d9a4053 Hello Copilot
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
2025-06-27 11:35:20 +02:00

23 lines
545 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "es2022",
"lib": ["ES2022"],
"sourceMap": true,
"experimentalDecorators": true,
"noImplicitOverride": true,
"noUnusedLocals": true,
"useDefineForClassFields": false,
"allowUnreachableCode": false,
"strict": true,
"exactOptionalPropertyTypes": false,
"useUnknownInCatchVariables": false,
"noFallthroughCasesInSwitch": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"skipLibCheck": true
}
}