feat: Projekt-Skelett (Bun, TypeScript, Drizzle-Deps)

This commit is contained in:
2026-06-09 20:18:06 +00:00
parent 8298b522fc
commit 568e282b07
7 changed files with 268 additions and 0 deletions

12
tsconfig.json Normal file
View File

@@ -0,0 +1,12 @@
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"noEmit": true,
"skipLibCheck": true,
"types": ["bun"]
},
"include": ["src"]
}