module.exports = function (api) { api.cache(true); return { presets: ['babel-preset-expo'], plugins: [ [ 'module-resolver', { root: ['./src'], alias: { '@domain': './src/domain', '@ports': './src/ports', '@application': './src/application', '@adapters': './src/adapters', '@presentation': './src/presentation', '@store': './src/store', '@shared': './src/shared', '@infrastructure': './src/infrastructure', }, }, ], 'react-native-reanimated/plugin', ], }; };