react-native-firebase-compiled
Version:
A well tested, feature rich Firebase implementation for React Native, supporting iOS & Android. Individual module support for Admob, Analytics, Auth, Crash Reporting, Cloud Firestore, Database, Dynamic Links, Functions, Messaging (FCM), Remote Config, Sto
44 lines (43 loc) • 753 B
JavaScript
module.exports = {
env: {
development: {
presets: [
[
'@invertase/react-native-syntax',
{
flow: 'comment',
},
],
],
},
publish: {
presets: [
[
'@invertase/react-native-syntax',
{
flow: 'strip',
},
],
],
},
es5: {
plugins: [['@babel/plugin-proposal-class-properties', { loose: false }]],
presets: [
[
'@invertase/react-native-syntax',
{
flow: 'strip',
},
],
[
'@babel/preset-env',
{
targets: {
node: '6',
},
},
],
],
},
},
};