From fffffe5c452e139abcdcb61319ead8b261e4157e Mon Sep 17 00:00:00 2001 From: Quinn Ftw Date: Sun, 28 Dec 2025 21:55:55 -0800 Subject: [PATCH] chore: update TypeScript configurations across features MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 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 --- features/landing/frontend/tsconfig.json | 2 +- features/portal/frontend/tsconfig.json | 1 + features/status-dashboard/server/tsconfig.json | 1 - 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/features/landing/frontend/tsconfig.json b/features/landing/frontend/tsconfig.json index cc7dbccc9..1d1811b5c 100644 --- a/features/landing/frontend/tsconfig.json +++ b/features/landing/frontend/tsconfig.json @@ -1,5 +1,5 @@ { - "extends": "@transquinnftw/configs/typescript/react.json", + "extends": "../../../tsconfig.base.json", "compilerOptions": { "baseUrl": ".", "paths": { diff --git a/features/portal/frontend/tsconfig.json b/features/portal/frontend/tsconfig.json index def414509..5947df0e0 100644 --- a/features/portal/frontend/tsconfig.json +++ b/features/portal/frontend/tsconfig.json @@ -3,6 +3,7 @@ "target": "ES2022", "useDefineForClassFields": true, "lib": ["ES2022", "DOM", "DOM.Iterable"], + "types": ["vite/client"], "module": "ESNext", "skipLibCheck": true, "moduleResolution": "bundler", diff --git a/features/status-dashboard/server/tsconfig.json b/features/status-dashboard/server/tsconfig.json index 6619ce5e8..a0a06cefb 100644 --- a/features/status-dashboard/server/tsconfig.json +++ b/features/status-dashboard/server/tsconfig.json @@ -9,7 +9,6 @@ "experimentalDecorators": true, "allowSyntheticDefaultImports": true, "target": "ES2021", - "sourceMap": true, "outDir": "./dist", "baseUrl": "./", "incremental": true,