mirror of
https://github.com/lemeow125/StudE-Frontend.git
synced 2024-11-16 22:09:26 +08:00
9 lines
168 B
JavaScript
9 lines
168 B
JavaScript
module.exports = function(api) {
|
|
api.cache(true);
|
|
return {
|
|
presets: ['babel-preset-expo'],
|
|
plugins: [
|
|
'react-native-reanimated/plugin',
|
|
]
|
|
};
|
|
};
|