Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/tsconfig.base.json
3285 views
1
{
2
"compilerOptions": {
3
"module": "nodenext",
4
"moduleResolution": "nodenext",
5
"moduleDetection": "legacy",
6
"experimentalDecorators": true,
7
"noImplicitReturns": true,
8
"noImplicitOverride": true,
9
"noUnusedLocals": true,
10
"noUncheckedSideEffectImports": true,
11
"allowUnreachableCode": false,
12
"strict": true,
13
"exactOptionalPropertyTypes": false,
14
"useUnknownInCatchVariables": false,
15
"forceConsistentCasingInFileNames": true,
16
"target": "ES2024",
17
"useDefineForClassFields": false,
18
"lib": [
19
"ES2024",
20
"DOM",
21
"DOM.Iterable",
22
"WebWorker.ImportScripts"
23
],
24
"allowSyntheticDefaultImports": true
25
}
26
}
27
28