mirror of
https://github.com/microsoft/playwright-mcp.git
synced 2025-07-23 22:22:28 +08:00

Follow-up for https://github.com/microsoft/playwright-mcp/pull/385#discussion_r2081541865. > `skipLibCheck`: Skip type checking all .d.ts files.
16 lines
273 B
JSON
16 lines
273 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "nodenext",
|
|
"strict": true,
|
|
"module": "NodeNext",
|
|
"rootDir": "src",
|
|
"outDir": "./lib",
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": [
|
|
"src",
|
|
],
|
|
}
|