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