feat(database): add

This commit is contained in:
Pihkaal
2025-12-03 15:34:36 +01:00
parent ebb157991e
commit 39068b6104
12 changed files with 989 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
{
"compilerOptions": {
"lib": ["ESNext"],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"moduleResolution": "bundler",
"allowImportingTsExtensions": false,
"baseUrl": ".",
"paths": {
"~/*": ["./src/*"],
"~": ["./src/index"]
},
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false
},
"include": ["src", "drizzle.config.ts"],
"exclude": ["node_modules", "dist"]
}