From d490d0e4e44b24287d3873e8ffaca4d28f85383f Mon Sep 17 00:00:00 2001 From: Tobias Koppers Date: Mon, 21 Jun 2021 16:30:26 +0200 Subject: [PATCH] enable incremental typechecking --- tsconfig.js | 1 + tsconfig.json | 1 + 2 files changed, 2 insertions(+) diff --git a/tsconfig.js b/tsconfig.js index 3dfc7fc25..06c39616c 100644 --- a/tsconfig.js +++ b/tsconfig.js @@ -34,6 +34,7 @@ module.exports = { resolveJsonModule: true, isolatedModules: true, jsx: 'preserve', + incremental: true, paths: { '@lib/*': ['lib/*'], '@utils/*': ['utils/*'], diff --git a/tsconfig.json b/tsconfig.json index 0b71cd09b..340929669 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -14,6 +14,7 @@ "resolveJsonModule": true, "isolatedModules": true, "jsx": "preserve", + "incremental": true, "paths": { "@lib/*": ["lib/*"], "@utils/*": ["utils/*"],