refactor(database): updated to the schemas

This commit is contained in:
2025-03-01 15:21:19 -06:00
parent 0ddcfaeaa9
commit 6c3199fecc
4 changed files with 36 additions and 6 deletions

16
tsconfig.json Normal file
View File

@@ -0,0 +1,16 @@
{
"compilerOptions": {
"target": "ESNext",
"module": "NodeNext",
"moduleResolution": "nodenext",
"strict": true,
"verbatimModuleSyntax": true,
"skipLibCheck": true,
"types": ["node"],
"jsx": "react-jsx",
"jsxImportSource": "hono/jsx",
"outDir": "./dist",
"removeComments": true
},
"exclude": ["node_modules", "frontend"]
}