hunt-blacklist-frontend/tsconfig.vite.json

29 lines
629 B
JSON
Raw Permalink Normal View History

2026-01-21 05:09:39 +01:00
{
"extends": "./tsconfig.json",
"include": [
".react-router/types/**/*",
"app/**/*",
"app/**/.server/**/*",
"app/**/.client/**/*",
"server/**/*"
],
"compilerOptions": {
"composite": true,
"strict": true,
"lib": ["DOM", "DOM.Iterable", "ES2022"],
"types": ["vite/client"],
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"baseUrl": ".",
"rootDirs": [".", "./.react-router/types"],
"paths": {
"~/*": ["./app/*"],
"@/*": ["./app/*"]
},
"esModuleInterop": true,
"resolveJsonModule": true
}
}