Files
OwnCord/Client/tsconfig.e2e.json
J3vbandClaude 7365a31b45 refactor: flatten Client/tauri-client into Client (B1-1) (#1411)
* refactor: move Client/tauri-client to Client (pure move, no content change)

* refactor: re-point paths after the Client flatten (mechanical, no behaviour change)

---------

Co-authored-by: Claude <noreply@anthropic.com>
2026-08-26 08:55:06 +02:00

22 lines
749 B
JSON

{
// Typechecks the Playwright layer (every tests/e2e spec + fixtures + the
// playwright configs), which the main tsconfig deliberately excludes from
// the app graph. "exclude": [] is required to clear the inherited
// "tests/e2e" exclusion — same trick tsconfig.build.json uses.
"extends": "./tsconfig.json",
// TypeScript 6 defaults "types" to [] instead of every installed @types
// package, so the Node globals (process, Buffer) used by the Playwright
// layer must be pulled in explicitly.
"compilerOptions": {
"types": ["node"]
},
"include": [
"tests/e2e",
"playwright.config.ts",
"playwright.config.prod.ts",
"playwright.config.native.ts",
"playwright.config.admin.ts"
],
"exclude": []
}