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