metro.config.js 300 B

1234567891011121314151617
  1. /**
  2. * Metro configuration for React Native
  3. * https://github.com/facebook/react-native
  4. *
  5. * @format
  6. */
  7. module.exports = {
  8. transformer: {
  9. getTransformOptions: async () => ({
  10. transform: {
  11. experimentalImportSupport: false,
  12. inlineRequires: false,
  13. },
  14. }),
  15. },
  16. };