Files
FEDEO/reactnative/babel.config.js
Florian Federspiel 677030f712 Initial
2023-11-25 16:53:52 +01:00

12 lines
268 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"),
],
};
};