From 9e3b57bea7cd737286b50bf63e4f3654c566e419 Mon Sep 17 00:00:00 2001 From: Anton Nikolaev Date: Tue, 21 Apr 2020 10:16:59 -0700 Subject: [PATCH] Remove "incremental" option from base tsconfig Summary: "incremental" option in base config conflicts with "tsc --noemit" which leads to crashes like in D21155831. Removing it from base config, anyway it is explicitly set for all the packages where required (babel-transformer, pkg-lib, pkg) Reviewed By: timur-valiev Differential Revision: D21157205 fbshipit-source-id: bb37101521d865bbe737e99637a9bc83a308494e --- desktop/tsconfig.base.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/desktop/tsconfig.base.json b/desktop/tsconfig.base.json index 8707066c1..b4425cda3 100644 --- a/desktop/tsconfig.base.json +++ b/desktop/tsconfig.base.json @@ -1,7 +1,11 @@ { "compilerOptions": { "module": "commonjs", - "lib": ["es7", "dom", "es2017"], + "lib": [ + "es7", + "dom", + "es2017" + ], "esModuleInterop": true, "target": "ES2017", "removeComments": true, @@ -12,6 +16,5 @@ "moduleResolution": "node", "skipLibCheck": true, "strict": true, - "incremental": true } }