initialize react-router

This commit is contained in:
Mona Mayrhofer 2025-04-02 15:57:57 +02:00
parent 951ccecd14
commit 4133722f72
No known key found for this signature in database
GPG key ID: 5C83114FA383C6A0
17 changed files with 213 additions and 74 deletions

View file

@ -1,5 +1,16 @@
{
"files": [],
"extends": "../../tsconfig.base.json",
"include": ["src"]
"include": ["app"],
"compilerOptions": {
"types": ["vitest/importMeta", "vite/client", "node"],
"rootDirs": [".", "./.react-router/types"],
"baseUrl": ".",
"paths": {
"~/*": ["./app/*"]
},
"esModuleInterop": true,
"verbatimModuleSyntax": true,
"resolveJsonModule": true
}
}