ecency-mobile/babel.config.js

17 lines
490 B
JavaScript
Raw Normal View History

module.exports = (api) => {
const babelEnv = api.env();
const plugins = [];
2022-11-08 13:54:57 +03:00
// change to 'production' to check if this is working in 'development' mode
if (babelEnv !== 'development') {
plugins.push(['transform-remove-console', { exclude: ['error', 'warn'] }]);
}
2022-11-08 13:54:57 +03:00
// Reanimated should be last plugin added in babel
plugins.push(['react-native-reanimated/plugin']);
return {
2024-02-20 16:58:05 +03:00
presets: ['module:@react-native/babel-preset'],
sourceMaps: true,
plugins,
};
2019-05-29 14:32:35 +03:00
};