chore: initialized repository

This commit is contained in:
Lukas Wölfer
2026-04-16 22:00:50 +02:00
parent 0a74a9a7ef
commit 74c94b05f9
12 changed files with 354 additions and 53 deletions

View File

@@ -11,18 +11,31 @@
"compilerOptions": {
"composite": true,
"strict": true,
"lib": ["DOM", "DOM.Iterable", "ES2022"],
"types": ["vite/client"],
"lib": [
"DOM",
"DOM.Iterable",
"ES2022"
],
"types": [
"vite/client"
],
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"rootDirs": [".", "./.react-router/types"],
"rootDirs": [
".",
"./.react-router/types"
],
"paths": {
"~/database/*": ["./database/*"],
"~/*": ["./app/*"]
"~/database/*": [
"./database/*"
],
"~/*": [
"./app/*"
]
},
"esModuleInterop": true,
"resolveJsonModule": true
}
}
}