Files
flipper/desktop/tsconfig.base.json
Michel Weststrate 1a91dc53fd Upgrade TS to 4.4
Summary: per title. TS 4.4 is awesome btw, with the much improved control flow analysis.

Reviewed By: timur-valiev

Differential Revision: D30806769

fbshipit-source-id: a41aa7bf10fdb0047ddb6210082b5e1fbdfb255f
2021-09-08 09:59:38 -07:00

32 lines
849 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": ["es7", "dom", "es2019"],
"esModuleInterop": true,
"target": "ES2019",
"removeComments": true,
"preserveConstEnums": true,
"sourceMap": true,
"declaration": true,
"declarationMap": true,
"jsx": "react",
"moduleResolution": "node",
"skipLibCheck": true,
"strict": true,
"useUnknownInCatchVariables": false,
"composite": true,
"incremental": true,
"baseUrl": ".",
"allowJs": true,
"rootDir": ".",
"paths": {
"flipper": ["./app/src"],
"flipper-plugin": ["./flipper-plugin/src"],
"eslint-plugin-flipper": ["./eslint-plugin-flipper/src"],
"flipper-*": ["./*/src"],
"@js-shared/*": ["../../js-shared/*"]
}
},
"exclude": ["**/lib/", "**/dist/", "**/node_modules/", "**/__tests__/"]
}