20 lines
322 B
JavaScript
20 lines
322 B
JavaScript
|
/* eslint-disable */
|
||
|
|
||
|
/**
|
||
|
* Metro configuration for React Native
|
||
|
* https://github.com/facebook/react-native
|
||
|
*
|
||
|
* @format
|
||
|
*/
|
||
|
|
||
|
module.exports = {
|
||
|
transformer: {
|
||
|
getTransformOptions: async () => ({
|
||
|
transform: {
|
||
|
experimentalImportSupport: false,
|
||
|
inlineRequires: false,
|
||
|
},
|
||
|
}),
|
||
|
},
|
||
|
};
|