Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/test/componentFixtures/playwright/tsconfig.json
13523 views
1
{
2
"compilerOptions": {
3
"module": "ES2022",
4
"moduleResolution": "bundler",
5
"target": "ES2022",
6
"strict": true,
7
"noUnusedParameters": true,
8
"noUnusedLocals": true,
9
"rootDir": ".",
10
"outDir": "out",
11
"sourceMap": true,
12
"skipLibCheck": true,
13
"esModuleInterop": true,
14
"lib": ["ESNext", "DOM"]
15
},
16
"include": ["tests/**/*.ts", "playwright.config.ts"],
17
"exclude": ["node_modules"]
18
}
19
20