initialised Project template for Express with Sqlite Drizzle

This commit is contained in:
2025-05-13 18:58:07 +02:00
parent eb4ee9c533
commit 35318afda3
15 changed files with 4953 additions and 0 deletions

20
tsconfig.json Normal file
View File

@@ -0,0 +1,20 @@
{
"compilerOptions": {
"composite": true,
"target": "ESNext",
"lib": [
"ESNext"
],
"moduleDetection": "force",
"useDefineForClassFields": true,
"module": "ESNext",
"moduleResolution": "Bundler",
"strict": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"isolatedModules": true,
"skipLibCheck": true,
"noUncheckedSideEffectImports": true
}
}