You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

metro.config.js 322B

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