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 = {
env: {
development: {
presets: ['module:metro-react-native-babel-preset'],
plugins: ['transform-flow-strip-types'],
presets: [
[
'@invertase/react-native-syntax',
{
flow: 'comment',
},
],
],
},
publish: {
presets: ['@invertase/react-native-syntax'],
plugins: ['transform-flow-strip-types'],
presets: [
[
'@invertase/react-native-syntax',
{
flow: 'strip',
},
],
],
},
},
};