xref: /MusicFree/babel.config.js (revision 6613e77203923e5b1742a49281bfa5de03fc1440)
1module.exports = {
2    presets: ['babel-preset-expo'],
3    plugins: [
4        [
5            'module-resolver',
6            {
7                root: ['./'],
8                alias: {
9                    '^@/(.+)': './src/\\1',
10                },
11            },
12        ],
13        'react-native-reanimated/plugin',
14    ],
15    env: {
16        production: {
17            plugins: ['transform-remove-console'],
18        },
19    },
20};
21