2026-08-07 21:20:48 +02:00
|
|
|
{
|
2026-08-20 03:49:13 +02:00
|
|
|
// Typechecks the Playwright layer (every tests/e2e spec + fixtures + the
|
2026-08-07 21:20:48 +02:00
|
|
|
// 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",
|
2026-08-22 06:48:58 +02:00
|
|
|
// 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"]
|
|
|
|
|
},
|
2026-08-07 21:20:48 +02:00
|
|
|
"include": [
|
|
|
|
|
"tests/e2e",
|
|
|
|
|
"playwright.config.ts",
|
|
|
|
|
"playwright.config.prod.ts",
|
|
|
|
|
"playwright.config.native.ts",
|
|
|
|
|
"playwright.config.admin.ts"
|
|
|
|
|
],
|
|
|
|
|
"exclude": []
|
|
|
|
|
}
|