Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/test/automation/tsconfig.json
5240 views
1
{
2
"compilerOptions": {
3
"module": "commonjs",
4
"target": "es2024",
5
"strict": true,
6
"noUnusedParameters": false,
7
"noUnusedLocals": true,
8
"rootDir": "./src",
9
"outDir": "out",
10
"sourceMap": true,
11
"declaration": true,
12
"skipLibCheck": true,
13
"lib": [
14
"esnext", // for #201187
15
"dom"
16
],
17
"paths": {
18
"playwright-core/types/protocol": [
19
"../../node_modules/playwright-core/types/protocol.d.ts"
20
]
21
}
22
},
23
"exclude": [
24
"node_modules",
25
"out",
26
"tools"
27
]
28
}
29
30