chore: update TypeScript configurations across features

- landing: extend from tsconfig.base.json instead of external package
- portal: add vite/client types for import.meta.env support
- status-dashboard: remove unused sourceMap option

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Quinn Ftw 2025-12-28 21:55:55 -08:00
parent 30158c02b6
commit fffffe5c45
3 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
{
"extends": "@transquinnftw/configs/typescript/react.json",
"extends": "../../../tsconfig.base.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {

View file

@ -3,6 +3,7 @@
"target": "ES2022",
"useDefineForClassFields": true,
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"types": ["vite/client"],
"module": "ESNext",
"skipLibCheck": true,
"moduleResolution": "bundler",

View file

@ -9,7 +9,6 @@
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "ES2021",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,