fix(api): import db correctly

This commit is contained in:
2025-11-09 18:02:15 +02:00
parent 4b82a11207
commit 2d1c620664
9 changed files with 19 additions and 17 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
import { checkHealth as checkDbHealth } from "@basango/db/utils/health";
import { checkHealth as checkDbHealth } from "@basango/db";
export async function checkHealth(): Promise<void> {
await checkDbHealth();
+1 -1
View File
@@ -2,7 +2,7 @@
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
"@/*": ["./src/*", "../../packages/db/src/*"]
}
},
"extends": "@basango/tsconfig/base.json",
+2 -2
View File
@@ -5,11 +5,11 @@
"react-dom": "catalog:"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@tailwindcss/postcss": "^4.1.11",
"@types/bun": "catalog:",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"tailwindcss": "^4",
"tailwindcss": "^4.1.11",
"typescript": "catalog:"
},
"name": "@basango/dashboard",