Last active
July 2, 2018 07:36
-
-
Save inspireui/fb56f94c7d1bc5a86007a31ba611b0a8 to your computer and use it in GitHub Desktop.
decorators javascript with react native
This file contains 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
/** | |
* 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"] | |
} | |
} | |
} |
This file contains 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
/** | |
* 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