mirror of
https://github.com/meshtastic/web.git
synced 2026-08-01 07:26:34 -04:00
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.
6 lines
56 B
JSON
6 lines
56 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
|
|
"files": []
|
|
}
|