From 4f1df96b347a614459a08ddc39a085450d6b1cfd Mon Sep 17 00:00:00 2001 From: maaz519 Date: Tue, 9 Jun 2026 16:50:56 +0530 Subject: [PATCH] fix: add retry loop for database connection in entrypoint --- apps/api/tsconfig.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/api/tsconfig.json b/apps/api/tsconfig.json index a5fbae0..797ae5c 100644 --- a/apps/api/tsconfig.json +++ b/apps/api/tsconfig.json @@ -9,10 +9,12 @@ "target": "ES2021", "sourceMap": true, "outDir": "./dist", + "rootDir": "./src", "baseUrl": "./", "incremental": true, "skipLibCheck": true, "strictNullChecks": true, "noImplicitAny": true - } + }, + "include": ["src/**/*"] }