Files
flipper/desktop/flipper-ui-core/tsconfig.json
Andrey Goncharov ef5fa275a3 Use AbstractClient from flipper-frontend-core in fliper-ui-core
Summary: This stack attempts to start using flipper-frontend-core from flipper-ui-core. Currently, flipper-frontend-core contains lots of copy-pasted code from flipper-ui-core.

Reviewed By: lblasa

Differential Revision: D37139198

fbshipit-source-id: 042db7492c550e10ea72c32fd15001c141bf53f9
2022-06-20 12:18:40 -07:00

27 lines
585 B
JSON

{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"outDir": "lib",
"rootDir": "src",
"esModuleInterop": true,
"emitDeclarationOnly": true,
"lib": ["dom", "es2019"],
"types": ["react/next", "react-dom/next", "../types/ReactDebounceRender", "../types/flipperGlobals"]
},
"references": [
{
"path": "../flipper-common"
},
{
"path": "../flipper-frontend-core"
},
{
"path": "../flipper-plugin"
},
{
"path": "../test-utils"
}
],
"exclude": ["**/node_modules/", "**/__tests__/", "**/lib/"]
}