babel.config.js 374 B

123456789101112131415161718
  1. module.exports = {
  2. presets: ['module:@react-native/babel-preset'],
  3. plugins: [
  4. [
  5. 'module-resolver',
  6. {
  7. root: ['.'],
  8. alias: {
  9. '@': './src',
  10. '@common': './src/common',
  11. '@app': './src/app',
  12. '@ywx': './src/miniapp/ywq',
  13. '@hospital': './src/miniapp/hospital',
  14. },
  15. },
  16. ],
  17. ],
  18. };