mirror of
https://github.com/inaturalist/iNaturalistReactNative.git
synced 2026-06-02 12:48:01 -04:00
* 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>
29 lines
850 B
JSON
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"]
|
|
}
|