I am developing a React-Native app, which was installed using Expo, that creates .babelrc config with this code:
{
"presets": ["babel-preset-expo"],
"env": {
"development": {
"plugins": ["transform-react-jsx-source"]
}
}
}
Recently I have encountered 2 other libraries that require the installation of other types of babel presets named: "react-native"
and "flow"
.
Question: How can I merge 3 presets?