This repository has been archived on 2023-12-20. You can view files and clone it, but cannot push or open issues/pull-requests.
PartyApp/babel.config.js

31 lines
857 B
JavaScript

module.exports = {
presets: ['module:metro-react-native-babel-preset'],
plugins: [
// ... other configs, if any
[
'module-resolver',
{
extensions: ['.ios.js', '.android.js', '.ios.jsx', '.android.jsx', '.js', '.jsx', '.json', '.ts', '.tsx'],
root: ['.'],
alias: {
"@redux": "./src/redux",
'@lang': './src/lang',
'@pages': './src/pages',
'@api': './src/api',
'@assets': './src/assets',
'@components': './src/components',
'@scenes': './src/scenes',
'@theme': './src/theme',
'@utils': './src/utils',
'@navigation': './src/navigation',
'@configs': './src/configs',
'@helper': './src/helper',
'@user': './src/user'
},
},
],
// ... other configs, if any
],
};