From cd0cf221e1df999de83b5fc2ea8ddfc571bc2ab5 Mon Sep 17 00:00:00 2001 From: Bogdan Savluk Date: Sat, 23 Jul 2022 14:05:55 +0200 Subject: [PATCH] enable typescript incremental builds 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 } }