暫無描述

babel.config.js 221B

12345678910111213
  1. module.exports = function (api) {
  2. api && api.cache(false);
  3. return {
  4. env: {
  5. test: {
  6. presets: [
  7. "module:metro-react-native-babel-preset"
  8. ],
  9. }
  10. }
  11. };
  12. }