babel.config.js 229 B

12345678910
  1. module.exports = function (api) {
  2. api.cache(true);
  3. return {
  4. presets: ['babel-preset-expo'],
  5. plugins: [
  6. 'react-native-worklets/plugin',
  7. ['@babel/plugin-proposal-decorators', { legacy: true }]
  8. ]
  9. };
  10. };