Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/build/tsconfig.json
5237 views
1
{
2
"compilerOptions": {
3
"target": "es2024",
4
"lib": [
5
"ES2024"
6
],
7
"module": "nodenext",
8
"noEmit": true,
9
"erasableSyntaxOnly": true,
10
"verbatimModuleSyntax": true,
11
"allowImportingTsExtensions": true,
12
"resolveJsonModule": true,
13
"skipLibCheck": true,
14
"strict": true,
15
"exactOptionalPropertyTypes": false,
16
"useUnknownInCatchVariables": false,
17
"noUnusedLocals": true,
18
"noUnusedParameters": true
19
},
20
"exclude": [
21
"node_modules/**",
22
"monaco-editor-playground/**",
23
"builtin/**",
24
"vite/**"
25
]
26
}
27
28