Files
web/tsconfig.json
copilot-swe-agent[bot] 185933e779 fix: remove invalid tsconfig project references that break Playwright e2e
The root tsconfig.json referenced apps/web and packages/transport-http as
TypeScript project references, but those tsconfigs lacked the required
`composite: true` setting. Playwright 1.62.0 strictly validates tsconfig
project references when loading playwright.config.ts, causing the e2e CI
job to fail with:

  Error: Failed to load tsconfig file at .../tsconfig.json:
  Failed to resolve "references" path "apps/web" referenced from .../tsconfig.json

Remove the invalid references. Individual package tsconfigs already extend
tsconfig.base.json directly and remain unaffected.
2026-07-30 14:52:42 +00:00

6 lines
56 B
JSON

{
"extends": "./tsconfig.base.json",
"files": []
}