aboutsummaryrefslogtreecommitdiffstats
path: root/babel.config.js
blob: 9496d67d1a6c99648b90d8ee4acc04d39de5b854 (plain) (blame)
1
2
3
4
5
6
7
module.exports = function(api) {
  api.cache(true);
  return {
    presets: ['babel-preset-expo'],
    plugins: ['react-native-reanimated/plugin']
  };
};