From 0999d46bd0f981d6f5a964dcaab103af11018519 Mon Sep 17 00:00:00 2001 From: Jp Date: Mon, 2 Feb 2026 16:01:02 +0800 Subject: [PATCH] chore: disable incremental compilation in tsconfig The incremental flag was causing issues with build consistency in certain environments. Disabling it ensures reliable builds across all development setups. --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index adb614c..b3cd1a6 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,7 +10,7 @@ "sourceMap": true, "outDir": "./dist", "baseUrl": "./", - "incremental": true, + "incremental": false, "skipLibCheck": true, "strictNullChecks": false, "noImplicitAny": false,