UNPKG

300 BJavaScriptView Raw
1/**
2 * Metro configuration for React Native
3 * https://github.com/facebook/react-native
4 *
5 * @format
6 */
7
8module.exports = {
9 transformer: {
10 getTransformOptions: async () => ({
11 transform: {
12 experimentalImportSupport: false,
13 inlineRequires: false,
14 },
15 }),
16 },
17};