babel.config.js 262 B

123456789101112131415
  1. module.exports = (api) => {
  2. api.cache(true)
  3. return {
  4. presets: ['babel-preset-expo'],
  5. plugins: [
  6. [
  7. 'import',
  8. {
  9. libraryName: '@ant-design/react-native',
  10. },
  11. ],
  12. 'react-native-paper/babel',
  13. ],
  14. }
  15. }