From 6af3ba79a974f9bd20c52a5d8051f16686cdce6c Mon Sep 17 00:00:00 2001 From: Bogdan Savluk Date: Sun, 24 Jul 2022 02:44:59 +0200 Subject: [PATCH] enable typescript incremental builds (#14790) this is to make running tsc locally faster(for me it around 10x improvement shorting it from 40 to 4 seconds) --- .gitignore | 2 ++ tsconfig.base.json | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index d28514220d56..1cd7d922e944 100644 --- a/.gitignore +++ b/.gitignore @@ -91,3 +91,5 @@ packages/babel-standalone/babel.min.js /test/runtime-integration/*/absolute-output.js .module-type + +*.tsbuildinfo diff --git a/tsconfig.base.json b/tsconfig.base.json index 0bff34869815..e3c525846cac 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -14,6 +14,7 @@ "resolveJsonModule": true, "noImplicitThis": true, "noImplicitAny": true, - "strictBindCallApply": true + "strictBindCallApply": true, + "incremental": true } }