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
32 lines
849 B
JSON
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__/"]
|
|
}
|