mirror of
https://github.com/zhigang1992/react-native-firebase.git
synced 2026-01-12 22:50:20 +08:00
39 lines
664 B
JavaScript
39 lines
664 B
JavaScript
module.exports = {
|
|
env: {
|
|
development: {
|
|
presets: [
|
|
[
|
|
'@invertase/react-native-syntax',
|
|
{
|
|
flow: 'comment',
|
|
},
|
|
],
|
|
],
|
|
},
|
|
test: {
|
|
presets: [
|
|
[
|
|
'@babel/preset-env',
|
|
{
|
|
targets: {
|
|
node: 'current',
|
|
},
|
|
},
|
|
],
|
|
'module:./tests/node_modules/metro-react-native-babel-preset',
|
|
'@babel/preset-flow',
|
|
],
|
|
},
|
|
publish: {
|
|
presets: [
|
|
[
|
|
'@invertase/react-native-syntax',
|
|
{
|
|
flow: 'strip',
|
|
},
|
|
],
|
|
],
|
|
},
|
|
},
|
|
};
|