123456789101112131415161718 |
- module.exports = {
- presets: ['module:@react-native/babel-preset'],
- plugins: [
- [
- 'module-resolver',
- {
- root: ['.'],
- alias: {
- '@': './src',
- '@ywx': './src/ywq',
- '@app': './src/app',
- '@hospital': './src/hospital',
- '@common': './src/common',
- },
- },
- ],
- ],
- };
|