22 lines
407 B
JavaScript
22 lines
407 B
JavaScript
|
/**
|
||
|
* Metro configuration for React Native
|
||
|
* https://github.com/facebook/react-native
|
||
|
*
|
||
|
* @format
|
||
|
*/
|
||
|
|
||
|
module.exports = {
|
||
|
resolver: {
|
||
|
/* resolver options */
|
||
|
sourceExts: ['jsx','js', 'json', 'ts', 'tsx'] //add here
|
||
|
},
|
||
|
transformer: {
|
||
|
getTransformOptions: async () => ({
|
||
|
transform: {
|
||
|
experimentalImportSupport: false,
|
||
|
inlineRequires: true,
|
||
|
},
|
||
|
}),
|
||
|
},
|
||
|
};
|