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