Created
July 5, 2019 13:48
-
-
Save FreddyPoly/972f9a5942d6516068911e84ce978ecc to your computer and use it in GitHub Desktop.
[REACT NATIVE] Env Var babel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"presets": ["module:metro-react-native-babel-preset"], | |
"env": { | |
"production": { | |
} | |
}, | |
"plugins": [ | |
[ | |
"transform-inline-environment-variables", | |
{ | |
"include": ["NODE_ENV", "ENV_VAR_TEST"] | |
} | |
], | |
[ | |
"@babel/plugin-proposal-decorators", | |
{ | |
"legacy": true | |
} | |
], | |
[ | |
"@babel/plugin-proposal-optional-catch-binding" | |
] | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment