BlueWallet/metro.config.js

18 lines
299 B
JavaScript
Raw Normal View History

2024-05-25 12:02:51 -04:00
/**
2024-05-26 12:54:16 -04:00
* Metro configuration for React Native
* https://github.com/facebook/react-native
2024-05-25 12:02:51 -04:00
*
2024-05-26 12:54:16 -04:00
* @format
2024-05-25 12:02:51 -04:00
*/
2021-06-24 12:46:08 -04:00
2024-05-26 12:54:16 -04:00
module.exports = {
transformer: {
getTransformOptions: async () => ({
transform: {
experimentalImportSupport: false,
inlineRequires: true,
},
}),
},
2024-05-26 12:54:16 -04:00
};