Files
iNaturalistReactNative/tsconfig.json
Ryan Stelly 3d3b8fba83 update react-native from 82.1 to 83.4 (includes react@19.2) (#3474)
* update react-native from 82.1 to 83.4 (includes react@19.2)

* Update Podfile.lock

* Create react-native+0.83.4.patch

There seems to be a known issue in React 19.2 that makes us hit errors during development with this code in regards to using realm.
https://github.com/realm/realm-js/issues/7086
https://github.com/facebook/react/issues/35126

* restore flow

* add two new RN file exceptions to flow

* pin react/types to ^19.2.0B

---------

Co-authored-by: Johannes Klein <johannes.t.klein@gmail.com>
2026-04-21 10:19:42 -05:00

29 lines
850 B
JSON

{
"extends": "@react-native/typescript-config",
"compilerOptions": {
"baseUrl": ".",
"moduleResolution": "bundler",
"paths": {
"*": ["src/*"],
"appConstants": ["src/appConstants"],
"api": ["src/api"],
"components": ["src/components"],
"dictionaries": ["src/dictionaries"],
"i18n": ["src/i18n"],
"images": ["src/images"],
"navigation": ["src/navigation"],
"providers": ["src/providers"],
"realmModels": ["src/realmModels"],
"sharedHelpers": ["src/sharedHelpers"],
"sharedHooks": ["src/sharedHooks"],
"stores": ["src/stores"],
"styles": ["src/styles"],
"tests": ["tests"],
},
"strict": true,
"types": ["nativewind/types", "jest"],
},
"include": ["**/*.ts", "**/*.tsx"],
"exclude": ["flow-typed", "**/node_modules", "**/Pods"]
}