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
27 lines
585 B
JSON
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/"]
|
|
}
|