mirror of
https://github.com/saltbo/zpan.git
synced 2026-08-28 15:51:29 +08:00
800c1f0232
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.
9 lines
207 B
JSON
9 lines
207 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"types": ["@cloudflare/workers-types"]
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["src/**/*.cf-test.ts", "src/test/apply-migrations.ts"]
|
|
}
|