Files
flipper/desktop/flipper-ui-core/tsconfig.json
Andrey Goncharov 1f83b4b414 Migrate to React 18
Summary:
Sadly, we have to use the experimental version of React to decapitate React Devtools.
See https://fb.workplace.com/groups/react.devtools/posts/3135684459978453/?comment_id=3135711763309056&reply_comment_id=3135760513304181

On the bright side, Replay.io and Code Sandbox also use experimental React without any problem.

Reviewed By: lblasa

Differential Revision: D34926473

fbshipit-source-id: 5cd63cc065c2535f0583464c7b5e37891dadaf14
2022-03-31 04:01:33 -07:00

24 lines
531 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-plugin"
},
{
"path": "../test-utils"
}
],
"exclude": ["**/node_modules/", "**/__tests__/", "**/lib/"]
}