2019-08-13 13:03:46 +00:00
|
|
|
module.exports = {
|
|
|
|
presets: ['module:metro-react-native-babel-preset'],
|
2021-10-02 00:26:33 +00:00
|
|
|
plugins: [
|
|
|
|
['@babel/plugin-proposal-decorators', { legacy: true }],
|
|
|
|
'react-native-reanimated/plugin',
|
|
|
|
[
|
|
|
|
'babel-plugin-root-import',
|
|
|
|
{
|
|
|
|
rootPathSuffix: 'app'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
],
|
2019-08-13 13:03:46 +00:00
|
|
|
env: {
|
|
|
|
production: {
|
|
|
|
plugins: ['transform-remove-console']
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|