Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/copilot/chat-lib/tsconfig.base.json
13383 views
1
{
2
"compilerOptions": {
3
"module": "commonjs",
4
"target": "es2022",
5
"lib": ["ES2022"],
6
"sourceMap": true,
7
8
"experimentalDecorators": true,
9
"noImplicitOverride": true,
10
"noUnusedLocals": true,
11
"useDefineForClassFields": false,
12
"allowUnreachableCode": false,
13
"strict": true,
14
"exactOptionalPropertyTypes": false,
15
"useUnknownInCatchVariables": false,
16
"noFallthroughCasesInSwitch": true,
17
"forceConsistentCasingInFileNames": true,
18
"allowSyntheticDefaultImports": true,
19
"esModuleInterop": true,
20
"skipLibCheck": true
21
}
22
}
23
24