mirror of
https://github.com/status-im/status-mobile.git
synced 2025-01-10 16:56:31 +00:00
e3e8e218ad
- Move `mobile_files` into `mobile/js_files` - Move `desktop_files` into `desktop/js_files` Signed-off-by: Pedro Pombeiro <pombeirp@users.noreply.github.com>
17 lines
339 B
JavaScript
17 lines
339 B
JavaScript
/**
|
|
* Metro configuration for React Native
|
|
* https://github.com/facebook/react-native
|
|
*
|
|
* @format
|
|
*/
|
|
module.exports = {
|
|
transformer: {
|
|
getTransformOptions: async () => ({
|
|
transform: {
|
|
experimentalImportSupport: false,
|
|
inlineRequires: false,
|
|
},
|
|
}),
|
|
},
|
|
};
|