2020-04-29 13:04:59 +02:00
|
|
|
/**
|
|
|
|
* Metro configuration for React Native
|
|
|
|
* https://github.com/facebook/react-native
|
|
|
|
*
|
|
|
|
* @format
|
|
|
|
*/
|
|
|
|
|
|
|
|
module.exports = {
|
2020-08-05 20:58:28 +02:00
|
|
|
transformer: {
|
|
|
|
getTransformOptions: async () => ({
|
|
|
|
transform: {
|
|
|
|
experimentalImportSupport: false,
|
2021-05-07 15:10:36 +02:00
|
|
|
inlineRequires: true,
|
2020-08-05 20:58:28 +02:00
|
|
|
},
|
|
|
|
}),
|
|
|
|
},
|
2020-04-29 13:04:59 +02:00
|
|
|
};
|