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:
parent
30158c02b6
commit
fffffe5c45
3 changed files with 2 additions and 2 deletions
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"extends": "@transquinnftw/configs/typescript/react.json",
|
||||
"extends": "../../../tsconfig.base.json",
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
"target": "ES2022",
|
||||
"useDefineForClassFields": true,
|
||||
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
||||
"types": ["vite/client"],
|
||||
"module": "ESNext",
|
||||
"skipLibCheck": true,
|
||||
"moduleResolution": "bundler",
|
||||
|
|
|
|||
|
|
@ -9,7 +9,6 @@
|
|||
"experimentalDecorators": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"target": "ES2021",
|
||||
"sourceMap": true,
|
||||
"outDir": "./dist",
|
||||
"baseUrl": "./",
|
||||
"incremental": true,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue