refactor: simplify tsconfig with @tsconfig/bases for vite react, move 'features' into 'components'

This commit is contained in:
Ryan Walters
2025-08-21 22:00:24 -05:00
parent 18ee2c8342
commit f83fc24d13
7 changed files with 30 additions and 30 deletions

View File

@@ -1,25 +1,10 @@
{
"extends": "@tsconfig/vite-react/tsconfig.json",
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
/* Paths */
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }]
"include": ["src"]
}