babel.config.js 292 B

123456789101112131415
  1. module.exports = {
  2. presets: [
  3. "module:@react-native/babel-preset"
  4. ],
  5. "plugins": [
  6. [
  7. "module-resolver",
  8. {
  9. "alias": {
  10. "^react-native$": "react-native-web"
  11. }
  12. }
  13. ]
  14. ]
  15. };