From da95ff31d4b7a3ea9e127b594ff11ff7ef2ee360 Mon Sep 17 00:00:00 2001 From: BilalG1 Date: Wed, 17 Dec 2025 12:26:12 -0800 Subject: [PATCH] fix flaky typecheck test (#1072) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary by CodeRabbit * **Chores** * Updated TypeScript build configuration to exclude development build artifacts (Next.js dev output) so compilation skips generated dev files, improving build/IDE performance for backend and dashboard projects. ✏️ Tip: You can customize this high-level summary in your review settings. --- apps/backend/tsconfig.json | 3 ++- apps/dashboard/tsconfig.json | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/backend/tsconfig.json b/apps/backend/tsconfig.json index e828a45d9..7fff7e1d1 100644 --- a/apps/backend/tsconfig.json +++ b/apps/backend/tsconfig.json @@ -42,6 +42,7 @@ ".next/dev/types/**/*.ts" ], "exclude": [ - "node_modules" + "node_modules", + ".next/dev" ] } diff --git a/apps/dashboard/tsconfig.json b/apps/dashboard/tsconfig.json index 5d05b2a1e..f0b236f75 100644 --- a/apps/dashboard/tsconfig.json +++ b/apps/dashboard/tsconfig.json @@ -42,6 +42,7 @@ ".next/dev/types/**/*.ts" ], "exclude": [ - "node_modules" + "node_modules", + ".next/dev" ] }