Files
castration_tracker/tsconfig.vite.json
2026-04-16 22:00:50 +02:00

41 lines
729 B
JSON

{
"extends": "./tsconfig.json",
"include": [
".react-router/types/**/*",
"app/**/*",
"app/**/.server/**/*",
"app/**/.client/**/*",
"database/**/*",
"server/**/*"
],
"compilerOptions": {
"composite": true,
"strict": true,
"lib": [
"DOM",
"DOM.Iterable",
"ES2022"
],
"types": [
"vite/client"
],
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"rootDirs": [
".",
"./.react-router/types"
],
"paths": {
"~/database/*": [
"./database/*"
],
"~/*": [
"./app/*"
]
},
"esModuleInterop": true,
"resolveJsonModule": true
}
}