2025-07-14 14:13:15 +08:00
|
|
|
module.exports = {
|
|
|
|
|
presets: ['module:@react-native/babel-preset'],
|
2025-07-14 20:30:51 +08:00
|
|
|
plugins: [
|
|
|
|
|
[
|
|
|
|
|
'module-resolver',
|
|
|
|
|
{
|
|
|
|
|
root: ['.'],
|
|
|
|
|
alias: {
|
|
|
|
|
'@': './src',
|
|
|
|
|
'@ywx': './src/ywq',
|
|
|
|
|
'@app': './src/app',
|
|
|
|
|
'@hospital': './src/hospital',
|
|
|
|
|
'@common': './src/common',
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
],
|
2025-07-14 14:13:15 +08:00
|
|
|
};
|