mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-27 08:21:03 +02:00
16 lines
298 B
JavaScript
16 lines
298 B
JavaScript
|
/**
|
||
|
* Metro configuration for React Native
|
||
|
* https://github.com/facebook/react-native
|
||
|
*
|
||
|
* @format
|
||
|
*/
|
||
|
module.exports = {
|
||
|
transformer: {
|
||
|
getTransformOptions: async () => ({
|
||
|
transform: {
|
||
|
experimentalImportSupport: false,
|
||
|
inlineRequires: false,
|
||
|
},
|
||
|
}),
|
||
|
},
|
||
|
};
|