Files
zpan/packages/shared/tsconfig.json
T
saltbo 800c1f0232 fix: switch to source-first internal package pattern
Remove composite mode and project references. Internal packages
(@zpan/shared) export .ts source files directly via package.json
exports field. Bundlers (Vite, wrangler, tsup) handle .ts at build
time, and tsc --noEmit resolves cross-package imports through the
exports field without needing a build step.

This eliminates TS6305 errors when typechecking server/web after
modifying shared, which was breaking every PR that imported from
@zpan/shared/types or @zpan/shared/schemas.
2026-04-07 20:08:14 -04:00

5 lines
66 B
JSON

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