mirror of
https://github.com/Blair-SGA-Dev-Team/blazerapp.git
synced 2024-10-31 20:41:19 -04:00
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,
|
|
},
|
|
}),
|
|
},
|
|
};
|