Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/test/smoke/tsconfig.json
3520 views
1
{
2
"compilerOptions": {
3
"module": "commonjs",
4
"noImplicitAny": false,
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
"lib": [
15
"esnext", // for #201187
16
"dom"
17
]
18
},
19
"exclude": [
20
"node_modules"
21
]
22
}
23
24