1
0
mirror of https://github.com/home-assistant/frontend.git synced 2026-07-02 12:05:39 +01:00
Files
Bram Kragten e53ffd76ac Add Playwright e2e tests (local Chromium) (#51929)
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-24 13:50:47 +02:00

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": []
}