mirror of
https://github.com/saltbo/zpan.git
synced 2026-08-28 15:51:29 +08:00
a08ebcaef8
- 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>
24 lines
526 B
JSON
24 lines
526 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"declaration": false,
|
|
"declarationMap": false,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@shared/*": ["./shared/*"],
|
|
"@server/*": ["./server/*"]
|
|
}
|
|
},
|
|
"include": []
|
|
}
|