From 476018ed0bc2630353a5102e25a1b6a855e6b69f Mon Sep 17 00:00:00 2001 From: Keith Date: Mon, 27 May 2019 11:24:18 +0800 Subject: [PATCH] build: enable incremental building of tsc --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index a2aa98456e..5cc2174115 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,6 +3,7 @@ "compilerOptions": { "target": "es6", "moduleResolution": "node", - "esModuleInterop": true + "esModuleInterop": true, + "incremental": true } }