From 9626997dca4b7607c5dd6e8c1f4e8f75ca2ef10c Mon Sep 17 00:00:00 2001 From: austindebest Date: Mon, 20 Apr 2026 01:09:36 +0100 Subject: [PATCH] Add rootDir to API tsconfig - Fix output directory structure for proper compilation --- apps/api/tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/api/tsconfig.json b/apps/api/tsconfig.json index d7080cf..91dc899 100644 --- a/apps/api/tsconfig.json +++ b/apps/api/tsconfig.json @@ -10,6 +10,7 @@ "target": "ES2021", "sourceMap": true, "outDir": "./dist", + "rootDir": "./src", "baseUrl": "./", "incremental": true, "skipLibCheck": true,