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
This commit is contained in:
Anton Nikolaev
2020-04-21 10:16:59 -07:00
committed by Facebook GitHub Bot
parent 764ba546f7
commit 9e3b57bea7

View File

@@ -1,7 +1,11 @@
{ {
"compilerOptions": { "compilerOptions": {
"module": "commonjs", "module": "commonjs",
"lib": ["es7", "dom", "es2017"], "lib": [
"es7",
"dom",
"es2017"
],
"esModuleInterop": true, "esModuleInterop": true,
"target": "ES2017", "target": "ES2017",
"removeComments": true, "removeComments": true,
@@ -12,6 +16,5 @@
"moduleResolution": "node", "moduleResolution": "node",
"skipLibCheck": true, "skipLibCheck": true,
"strict": true, "strict": true,
"incremental": true
} }
} }