mirror of
https://github.com/status-im/react-navigation.git
synced 2025-02-24 17:18:09 +00:00
* Remove flow types from src * Finish removing Flow * Clear out flow-typed, some flow mentions in docs, website flow usage, and some other config
29 lines
533 B
Plaintext
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
|
|
}
|
|
]
|
|
]
|
|
}
|
|
}
|
|
}
|