Files
flipper/desktop/app/tsconfig.json
Lorenzo Blasa 4b396e1ef3 Use flipper-server if running, otherwise initiate one
Summary:
Provided that GK passes:

- If a flipper-server instance is running, use and connect.

- If not, start flipper-server and connect.

Reviewed By: passy

Differential Revision: D37034960

fbshipit-source-id: ff79e56e80e74415373f84b78305b4fc3e31f7d0
2022-06-09 14:26:17 -07:00

32 lines
600 B
JSON

{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"outDir": "lib",
"rootDir": "src",
"esModuleInterop": true,
"emitDeclarationOnly": true,
"lib": ["DOM", "ES2019"],
"types": [
"../types/flipperGlobals"
]
},
"references": [
{
"path": "../flipper-common"
},
{
"path": "../flipper-frontend-core"
},
{
"path": "../flipper-server-companion"
},
{
"path": "../flipper-server-core"
},
{
"path": "../flipper-ui-core"
}
],
"exclude": ["**/node_modules/", "**/__tests__/", "**/lib/"]
}