mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-18 07:47:23 +01:00
19 lines
401 B
JSON
19 lines
401 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "ES2022",
|
|
"moduleResolution": "bundler",
|
|
"target": "ES2022",
|
|
"strict": true,
|
|
"noUnusedParameters": true,
|
|
"noUnusedLocals": true,
|
|
"rootDir": ".",
|
|
"outDir": "out",
|
|
"sourceMap": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"lib": ["ESNext", "DOM"]
|
|
},
|
|
"include": ["tests/**/*.ts", "playwright.config.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|