databag/app/mobile/babel.config.js

8 lines
156 B
JavaScript
Raw Normal View History

2022-09-06 21:38:53 +00:00
module.exports = function(api) {
api.cache(true);
return {
2022-09-18 06:24:37 +00:00
presets: ['babel-preset-expo'],
plugins: ['react-native-reanimated/plugin'],
2022-09-06 21:38:53 +00:00
};
2022-01-14 07:59:53 +00:00
};