StudE-Frontend/babel.config.js

10 lines
168 B
JavaScript
Raw Permalink Normal View History

module.exports = function(api) {
api.cache(true);
return {
presets: ['babel-preset-expo'],
plugins: [
'react-native-reanimated/plugin',
]
};
};