Initial commit from create-react-router

This commit is contained in:
Lukas Wölfer
2026-04-16 21:41:35 +02:00
commit 0a74a9a7ef
28 changed files with 7678 additions and 0 deletions

28
tsconfig.vite.json Normal file
View File

@@ -0,0 +1,28 @@
{
"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
}
}