GT2/Ejectable/node_modules/react-native/metro.config.js

29 lines
570 B
JavaScript

/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow
* @format
*/
'use strict';
const getPolyfills = require('./rn-get-polyfills');
/**
* This cli config is needed for development purposes, e.g. for running
* integration tests during local development or on CI services.
*/
module.exports = {
resolver: {
extraNodeModules: {
'react-native': __dirname,
},
},
serializer: {
getPolyfills,
},
};