Pokedex-P-lao/metro.config.js
2021-10-18 14:58:17 -06:00

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,
},
}),
},
};