Files
iNaturalistReactNative/babel.config.js
Johannes Klein d71ab7a358 Copy of: Maintenance: break upload code into smaller modules -- realm syncing functions (#2883)
* Create module for realm syncing and write unit tests before refactoring

* Refactor realmSync functions for readability & make sure realm errors aren't silently swallowed

---------

Co-authored-by: Amanda Bullington <albullington@gmail.com>
2025-04-29 16:48:50 +02:00

42 lines
1.3 KiB
JavaScript

module.exports = {
presets: ["module:@react-native/babel-preset"],
plugins: [
"react-native-worklets-core/plugin",
"transform-inline-environment-variables",
"nativewind/babel",
["module-resolver", {
alias: {
// constants is a reserved word, so jest won't run if we name the alias constants
appConstants: "./src/appConstants",
api: "./src/api",
components: "./src/components",
dictionaries: "./src/dictionaries",
i18n: "./src/i18n",
images: "./src/images",
// for some reason, this doesn't seem to work for models, so I'm leaving that directory out
navigation: "./src/navigation",
providers: "./src/providers",
realmModels: "./src/realmModels",
sharedHelpers: "./src/sharedHelpers",
sharedHooks: "./src/sharedHooks",
stores: "./src/stores",
styles: "./src/styles",
tests: "./tests",
uploaders: "./src/uploaders"
}
}],
// Reanimated plugin has to be listed last https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/installation/
[
"react-native-reanimated/plugin",
{
processNestedWorklets: true
}
]
],
env: {
production: {
plugins: ["react-native-paper/babel", "transform-remove-console"]
}
}
};