mirror of
https://github.com/Stef-00012/Zipline-Android-App.git
synced 2025-05-10 18:05:52 +02:00
9 lines
189 B
JavaScript
9 lines
189 B
JavaScript
module.exports = (api) => {
|
|
api.cache(true);
|
|
return {
|
|
presets: ["babel-preset-expo"],
|
|
plugins: [
|
|
"react-native-reanimated/plugin", // THIS HAS TO BE LAST IN THIS ARRAY
|
|
],
|
|
};
|
|
};
|