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:
committed by
Facebook GitHub Bot
parent
764ba546f7
commit
9e3b57bea7
@@ -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
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user