react-native-firebase/bridge/.babelrc

27 lines
450 B
Plaintext
Raw Normal View History

2018-03-23 14:26:11 +00:00
{
"presets": [
"react-native"
],
"env": {
"development": {
"plugins": [
["istanbul", {
"useInlineSourceMaps": true,
"instrument": true,
2018-03-23 14:26:11 +00:00
"include": [
"lib/*"
],
"exclude": [
"node_modules"
2018-03-23 14:26:11 +00:00
]
}],
["module-resolver", {
"alias": {
"react-native-firebase": ".."
}
2018-03-23 14:26:11 +00:00
}]
]
}
}
}