Files
iNaturalistReactNative/tsconfig.json
Ken-ichi f3bcec2d2e Continuous location fetch in the cameras (#1673)
* Fetch location continuously in cameras until accuracy falls below threshold
* Unit test for useUserLocation
* Added untilAcc option to useUserLocation
* Bugfix: ObsEdit was not always fetching location for new camera photos

Closes #1340
2024-06-12 11:18:12 -07:00

24 lines
666 B
JSON

{
"extends": "@react-native/typescript-config/tsconfig.json",
"compilerOptions": {
"baseUrl": ".",
"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"],
}
}
}