Files
flipper/js/react-flipper-example/tsconfig.json
Pranav Yadav cb4352abea js/react-flipper-example Switch to React 18.2.0 & bump deps (#4901)
Summary:
This diff refactors `js/react-flipper-example` to React & ReactDOM `18.2.0` and bumps all deps to the `latest`.
- Also, specifies the `js-flipper` dep version as `*` which is taken care of by the `relative-deps` script.
- Deletes `logo.svg` from `src/`

### Scope: `js/react-flipper-example`

## Changelog

[General][Changed] - [Refactor] `js/react-flipper-example` Switch to React `18.2.0` & bump deps.

Pull Request resolved: https://github.com/facebook/flipper/pull/4901

Test Plan: - Should pass `js-flipper / build-react-example (pull_request)` workflow.

Reviewed By: antonk52

Differential Revision: D47868448

Pulled By: passy

fbshipit-source-id: edc67ebe3f205d32ec6198b7130ded287997fe50
2023-07-31 05:40:55 -07:00

21 lines
503 B
JSON

{
"compilerOptions": {
"target": "ES6",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx"
},
"include": ["src"]
}