mirror of
https://github.com/status-im/react-navigation.git
synced 2025-02-25 01:28:16 +00:00
33 lines
671 B
Plaintext
33 lines
671 B
Plaintext
|
{
|
||
|
"env": {
|
||
|
// For RN example development
|
||
|
"development": {
|
||
|
"presets": ["react-native"],
|
||
|
"plugins": [
|
||
|
"transform-flow-strip-types",
|
||
|
],
|
||
|
},
|
||
|
// For Jest
|
||
|
"test": {
|
||
|
"presets": ["react-native"],
|
||
|
"plugins": [
|
||
|
"transform-flow-strip-types",
|
||
|
],
|
||
|
},
|
||
|
// For publishing to NPM for RN
|
||
|
"publish-rn": {
|
||
|
"presets": ["react-native-syntax"],
|
||
|
"plugins": [
|
||
|
"transform-flow-strip-types",
|
||
|
],
|
||
|
},
|
||
|
// For publishing to NPM for RN
|
||
|
"publish-web": {
|
||
|
"presets": ["es2015", "stage-1", "react"],
|
||
|
"plugins": [
|
||
|
"transform-flow-strip-types",
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
}
|