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