react-navigation/.babelrc
Brent Vatne ecfa38bfd2 Remove flow (#3350)
* Remove flow types from src

* Finish removing Flow

* Clear out flow-typed, some flow mentions in docs, website flow usage, and some other config
2018-01-24 17:52:09 -08:00

29 lines
533 B
Plaintext

{
"env": {
// For RN example development
"development": {
"presets": ["react-native"]
},
// For Jest
"test": {
"presets": ["react-native"]
},
// For publishing to NPM for RN
"publish-rn": {
"presets": ["react-native-syntax"]
},
// For publishing to NPM for web
"publish-web": {
"presets": ["es2015", "stage-1", "react"],
"plugins": [
[
"transform-define",
{
"__DEV__": false
}
]
]
}
}
}