Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/test/mcp/tsconfig.json
5221 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
"rootDir": "./src",
12
"outDir": "out",
13
"sourceMap": true,
14
"skipLibCheck": true,
15
"lib": [
16
"esnext", // for #201187
17
"dom"
18
]
19
},
20
"exclude": [
21
"node_modules"
22
]
23
}
24
25