mirror of
https://github.com/status-im/react-native-cameraroll.git
synced 2025-01-14 03:44:19 +00:00
057acd815b
* Updated example to build and run on latest React Native * Fixed `yarn test:detox` release builds * Added missing downloadDependencies CircleCI task
18 lines
300 B
JavaScript
18 lines
300 B
JavaScript
/**
|
|
* Metro configuration for React Native
|
|
* https://github.com/facebook/react-native
|
|
*
|
|
* @format
|
|
*/
|
|
|
|
module.exports = {
|
|
transformer: {
|
|
getTransformOptions: async () => ({
|
|
transform: {
|
|
experimentalImportSupport: false,
|
|
inlineRequires: false,
|
|
},
|
|
}),
|
|
},
|
|
};
|