Reactnative-notesapp/babel.config.js

10 lines
167 B
JavaScript
Raw Normal View History

module.exports = function(api) {
api.cache(true);
return {
presets: ['babel-preset-expo'],
2023-03-05 21:37:52 +08:00
plugins:[
'react-native-reanimated/plugin',
]
};
};