Files
address-verification-app/metro.config.js
2024-11-11 16:56:00 +05:30

20 lines
387 B
JavaScript

const { withSentryConfig } = require('@sentry/react-native/metro');
/**
* Metro configuration for React Native
* https://github.com/facebook/react-native
*
* @format
*/
module.exports = withSentryConfig({
transformer: {
getTransformOptions: async () => ({
transform: {
experimentalImportSupport: false,
inlineRequires: false,
},
}),
},
});