Create RN repo with npx react-native init

This commit is contained in:
Amanda Bullington
2021-09-13 14:38:14 -07:00
parent 118bf72804
commit d4adde847d
63 changed files with 26653 additions and 0 deletions

17
metro.config.js Normal file
View File

@@ -0,0 +1,17 @@
/**
* Metro configuration for React Native
* https://github.com/facebook/react-native
*
* @format
*/
module.exports = {
transformer: {
getTransformOptions: async () => ({
transform: {
experimentalImportSupport: false,
inlineRequires: true,
},
}),
},
};