pvern/babel.config.js

19 lines
415 B
JavaScript

module.exports = function (api) {
api.cache(true);
return {
presets: ["babel-preset-expo"],
plugins: [
"@babel/plugin-proposal-export-namespace-from",
"react-native-reanimated/plugin",
require.resolve("expo-router/babel"),
[
"module:react-native-dotenv",
{
moduleName: "react-native-dotenv",
verbose: false,
},
],
],
};
};