mirror of
https://github.com/home-assistant/frontend.git
synced 2026-07-02 12:05:39 +01:00
e53ffd76ac
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
16 lines
461 B
JSON
16 lines
461 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"types": ["node"],
|
|
// e2e tests run via Playwright's Node.js runner, not the browser bundler
|
|
"lib": ["ES2021"],
|
|
// Playwright's types use modern module resolution
|
|
"moduleResolution": "bundler",
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false
|
|
},
|
|
"include": ["./**/*.ts"],
|
|
// Clear the exclude from the root tsconfig so we include our own files
|
|
"exclude": []
|
|
}
|