mirror of
https://github.com/microsoft/vscode.git
synced 2026-02-22 18:55:56 +00:00
28 lines
467 B
JSON
28 lines
467 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es2024",
|
|
"strict": true,
|
|
"noUnusedParameters": false,
|
|
"noUnusedLocals": true,
|
|
"outDir": "out",
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"skipLibCheck": true,
|
|
"lib": [
|
|
"esnext", // for #201187
|
|
"dom"
|
|
],
|
|
"paths": {
|
|
"playwright-core/types/protocol": [
|
|
"../../node_modules/playwright-core/types/protocol.d.ts"
|
|
]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"out",
|
|
"tools"
|
|
]
|
|
}
|