status-react/metro.config.js

17 lines
338 B
JavaScript
Raw Normal View History

/**
* Metro configuration for React Native
* https://github.com/facebook/react-native
*
* @format
*/
module.exports = {
2019-03-04 12:38:41 +00:00
transformer: {
getTransformOptions: async () => ({
transform: {
experimentalImportSupport: false,
inlineRequires: true,
2019-03-04 12:38:41 +00:00
},
}),
},
};