2022-06-08 00:50:05 +02:00
|
|
|
/**
|
|
|
|
* Metro configuration for React Native
|
|
|
|
* https://github.com/facebook/react-native
|
|
|
|
*
|
|
|
|
* @format
|
|
|
|
*/
|
2022-06-15 03:17:08 +02:00
|
|
|
const metroResolver = require('metro-resolver')
|
|
|
|
const path = require('path')
|
2022-06-08 00:50:05 +02:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
transformer: {
|
|
|
|
getTransformOptions: async () => ({
|
|
|
|
transform: {
|
|
|
|
experimentalImportSupport: false,
|
|
|
|
inlineRequires: true,
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
},
|
2022-06-09 20:03:25 +02:00
|
|
|
}
|