babel.config.js 278 B

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