ilink-world/metro.config.js

19 lines
319 B
JavaScript
Raw Normal View History

2019-06-16 13:09:54 +00:00
/**
* Metro configuration for React Native
* https://github.com/facebook/react-native
*
* @format
*/
module.exports = {
transformer: {
getTransformOptions: async () => ({
transform: {
experimentalImportSupport: false,
inlineRequires: false,
},
}),
},
2022-03-07 11:13:27 +00:00
resetCache: true
2019-06-16 13:09:54 +00:00
};