Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/test/sanity/tsconfig.json
4770 views
1
{
2
"compilerOptions": {
3
"module": "commonjs",
4
"noImplicitAny": true,
5
"removeComments": false,
6
"preserveConstEnums": true,
7
"target": "es2024",
8
"strict": true,
9
"noUnusedParameters": false,
10
"noUnusedLocals": true,
11
"outDir": "out",
12
"sourceMap": true,
13
"skipLibCheck": true,
14
"esModuleInterop": true,
15
"lib": [
16
"esnext", // for #201187
17
"dom"
18
]
19
},
20
"exclude": [
21
"node_modules"
22
]
23
}
24
25