xref: /MusicFree/babel.config.js (revision 6613e77203923e5b1742a49281bfa5de03fc1440)
1bf6e62f2S猫头猫module.exports = {
2*6613e772Smaotoumao    presets: ['babel-preset-expo'],
3bf6e62f2S猫头猫    plugins: [
4bf6e62f2S猫头猫        [
5bf6e62f2S猫头猫            'module-resolver',
6bf6e62f2S猫头猫            {
7bf6e62f2S猫头猫                root: ['./'],
8bf6e62f2S猫头猫                alias: {
94060c00aS猫头猫                    '^@/(.+)': './src/\\1',
104060c00aS猫头猫                },
11bf6e62f2S猫头猫            },
12bf6e62f2S猫头猫        ],
134060c00aS猫头猫        'react-native-reanimated/plugin',
144060c00aS猫头猫    ],
155589cdf3S猫头猫    env: {
165589cdf3S猫头猫        production: {
175589cdf3S猫头猫            plugins: ['transform-remove-console'],
185589cdf3S猫头猫        },
195589cdf3S猫头猫    },
20bf6e62f2S猫头猫};
21