Rocket.Chat.ReactNative/babel.config.js

14 lines
316 B
JavaScript
Raw Normal View History

module.exports = {
presets: ['module:metro-react-native-babel-preset'],
plugins: [
['@babel/plugin-proposal-decorators', { legacy: true }],
'react-native-reanimated/plugin',
'@babel/plugin-transform-named-capturing-groups-regex'
],
env: {
production: {
plugins: ['transform-remove-console']
}
}
};