react-native-firebase/babel.config.js

25 lines
372 B
JavaScript

module.exports = {
env: {
development: {
presets: [
[
'@invertase/react-native-syntax',
{
flow: 'comment',
},
],
],
},
publish: {
presets: [
[
'@invertase/react-native-syntax',
{
flow: 'strip',
},
],
],
},
},
};