babel.config.js 292 B

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