mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-09-01 20:33:27 +00:00
The portal's type-check script was `tsc --noEmit`, run against a tsconfig.json whose "files" is [] and which only carries project references. tsc checks zero files and exits 0, so `pnpm turbo type-check --filter=@edr/freight-portal` has been reporting success without compiling anything. Switched to `tsc -b`, which the backoffice already uses and which follows the references. The portal is clean under it.