Files
zpan/tsconfig.web.json
T
saltbo a08ebcaef8 refactor(config): consolidate tsconfig path aliases and remove redundancy
- 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>
2026-04-20 16:30:16 -04:00

8 lines
118 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"jsx": "react-jsx"
},
"include": ["src", "shared"]
}