update babel.config to make use of presets new `flow` option

This commit is contained in:
Salakar 2018-09-03 17:33:44 +01:00
parent 3b52bbc8c5
commit c43548a3b7
1 changed files with 16 additions and 4 deletions

View File

@ -1,12 +1,24 @@
module.exports = { module.exports = {
env: { env: {
development: { development: {
presets: ['module:metro-react-native-babel-preset'], presets: [
plugins: ['transform-flow-strip-types'], [
'@invertase/react-native-syntax',
{
flow: 'comment',
},
],
],
}, },
publish: { publish: {
presets: ['@invertase/react-native-syntax'], presets: [
plugins: ['transform-flow-strip-types'], [
'@invertase/react-native-syntax',
{
flow: 'strip',
},
],
],
}, },
}, },
}; };