From 16c7ae95c29362829593106102570647c4d54b7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Belin?= Date: Sun, 31 Mar 2024 18:38:50 +0200 Subject: [PATCH] Enable the incremental compilation [skip ci] --- src/tsconfig.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/tsconfig.json b/src/tsconfig.json index 5d91782c..ba6e0cb8 100644 --- a/src/tsconfig.json +++ b/src/tsconfig.json @@ -5,6 +5,8 @@ "declaration": true, "declarationMap": true, "noEmit": false, - "outDir": "../lib" + "incremental": true, + "outDir": "../lib", + "tsBuildInfoFile": "../var/tsbuildinfo.json" } }