Files
flipper/desktop/tsconfig.base.json
Anton Nikolaev 9e3b57bea7 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
2020-04-21 10:19:53 -07:00

21 lines
377 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es7",
"dom",
"es2017"
],
"esModuleInterop": true,
"target": "ES2017",
"removeComments": true,
"preserveConstEnums": true,
"sourceMap": true,
"declaration": true,
"jsx": "react",
"moduleResolution": "node",
"skipLibCheck": true,
"strict": true,
}
}