grocery-app/Customer App/babel.config.js

11 lines
215 B
JavaScript
Raw Normal View History

2023-03-16 14:33:00 +00:00
module.exports = function (api) {
api.cache(true);
2022-12-21 09:56:47 +00:00
return {
2023-03-16 14:33:00 +00:00
presets: ["babel-preset-expo"],
plugins: [
"react-native-reanimated/plugin",
"@babel/plugin-syntax-dynamic-import",
],
};
};