Skip to content

Instantly share code, notes, and snippets.

@inspireui
Last active July 2, 2018 07:36
Show Gist options
  • Save inspireui/fb56f94c7d1bc5a86007a31ba611b0a8 to your computer and use it in GitHub Desktop.
Save inspireui/fb56f94c7d1bc5a86007a31ba611b0a8 to your computer and use it in GitHub Desktop.
decorators javascript with react native
/**
* Please install https://github.com/expo/babel-preset-expo to use decorators javascript
* And add to .babelrc
*/
{
"presets": ["babel-preset-expo"],
"env": {
"production": {
"plugins": ["transform-remove-console"]
}
}
}
/**
* Please install https://github.com/loganfsmyth/babel-plugin-transform-decorators-legacy to use decorators javascript
* And add to .babelrc
*/
{
"presets": ["react-native"],
"env": {
"production": {
"plugins": ["transform-remove-console", "transform-decorators-legacy"]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment