mirror of
https://github.com/inaturalist/iNaturalistReactNative.git
synced 2025-12-23 22:18:36 -05:00
* chore: validate and normalize translations in addition to src strings * fix: globalize lat/lng/acc in LocationPicker * refactor: extract language picker into component * refactor: globalized text * feat: added a script to i18ncli called "checkify" that generates localization files prepended with a checkmark to help see strings that are not globalized * fix: localize date formatting (closes #1622) Closes #2102
25 lines
701 B
JSON
25 lines
701 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"],
|
|
},
|
|
"types": ["nativewind/types"]
|
|
}
|
|
}
|