Files
netfelix-audio-fix/tsconfig.json
Felix Förtsch af410cb616
Some checks failed
Build and Push Docker Image / build (push) Has been cancelled
fix server typecheck: use tsconfig project references, await bun file in spa fallback
- split tsconfig.json into project references (client + server) so bun-types and DOM types don't leak into the other side; server now resolves Bun.* without diagnostics
- client tsconfig adds vite/client types so import.meta.env typechecks
- index.tsx spa fallback: use async/await + c.html(await …) instead of returning a Promise of a Response, which Hono's Handler type rejects
- subtitles normalize-titles: narrow canonical to string|null (Map.get widened to include undefined)
2026-04-13 07:51:10 +02:00

8 lines
117 B
JSON

{
"files": [],
"references": [
{ "path": "./tsconfig.client.json" },
{ "path": "./tsconfig.server.json" }
]
}