nostros/metro.config.js

18 lines
299 B
JavaScript
Raw Normal View History

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