2019-09-09 17:25:02 +00:00
|
|
|
/**
|
|
|
|
* Metro configuration for React Native
|
|
|
|
* https://github.com/facebook/react-native
|
|
|
|
*
|
|
|
|
* @format
|
|
|
|
*/
|
|
|
|
module.exports = {
|
2023-06-19 13:39:12 +00:00
|
|
|
transformer: {
|
|
|
|
getTransformOptions: async () => ({
|
|
|
|
transform: {
|
|
|
|
experimentalImportSupport: false,
|
|
|
|
inlineRequires: true,
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
resolver: {
|
|
|
|
extraNodeModules: require('node-libs-react-native'),
|
|
|
|
},
|
2019-09-09 17:25:02 +00:00
|
|
|
};
|