mirror of
https://github.com/inaturalist/iNaturalistReactNative.git
synced 2026-04-18 05:49:24 -04:00
38 lines
1.3 KiB
JavaScript
38 lines
1.3 KiB
JavaScript
module.exports = {
|
|
presets: ["module:@react-native/babel-preset"],
|
|
plugins: [
|
|
"babel-plugin-react-compiler", // must run first!
|
|
"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 4: use worklets plugin (must be listed last). See migration 3.x -> 4.x.
|
|
"react-native-worklets/plugin",
|
|
],
|
|
env: {
|
|
production: {
|
|
plugins: ["react-native-paper/babel", "transform-remove-console"],
|
|
},
|
|
},
|
|
};
|