Massive/metro.config.js

18 lines
298 B
JavaScript
Raw Normal View History

2022-06-30 06:50:52 +00:00
/**
* Metro configuration for React Native
* https://github.com/facebook/react-native
*
* @format
*/
module.exports = {
transformer: {
getTransformOptions: async () => ({
transform: {
experimentalImportSupport: false,
inlineRequires: true,
},
}),
},
2022-10-31 08:00:10 +00:00
}