mirror of
https://github.com/zhigang1992/react-native-firebase.git
synced 2026-01-12 17:42:24 +08:00
25 lines
372 B
JavaScript
25 lines
372 B
JavaScript
module.exports = {
|
|
env: {
|
|
development: {
|
|
presets: [
|
|
[
|
|
'@invertase/react-native-syntax',
|
|
{
|
|
flow: 'comment',
|
|
},
|
|
],
|
|
],
|
|
},
|
|
publish: {
|
|
presets: [
|
|
[
|
|
'@invertase/react-native-syntax',
|
|
{
|
|
flow: 'strip',
|
|
},
|
|
],
|
|
],
|
|
},
|
|
},
|
|
};
|