- Move declaration/declarationMap: false to root (was duplicated in both
child configs)
- Remove duplicate baseUrl/paths from tsconfig.web.json (now inherited
from root)
- tsconfig.web.json and tsconfig.server.json now only declare their own
unique options (jsx and types respectively)
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
shadcn reads the root tsconfig.json to resolve the `@/` alias.
Without paths defined there, it fell back to treating `@/` as a
literal directory name, creating files under a stray `@/` folder
instead of `src/`.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>