Files
flipper/desktop/flipper-ui-core/tsconfig.json
Michel Weststrate 2480ed30c5 Move flipper-doctor check running to flipper-server-core
Summary: Per title. Two new server API's: get-healthchecks, and run-healtcheck. Types have all been moved to flipper-common, so that they can be used by doctor, server-core and ui-core packages. Since it were quite some, moved them into a FlipperDoctor namespace.

Reviewed By: nikoant

Differential Revision: D32720510

fbshipit-source-id: 37aa35cde6ebd58479cf0dffec5b7b2da6d22198
2021-12-08 04:30:56 -08:00

22 lines
395 B
JSON

{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"outDir": "lib",
"rootDir": "src",
"esModuleInterop": true,
"emitDeclarationOnly": true
},
"references": [
{
"path": "../flipper-common"
},
{
"path": "../flipper-plugin"
},
{
"path": "../test-utils"
}
],
"exclude": ["**/node_modules/", "**/__tests__/", "**/lib/"]
}