Last active
November 25, 2015 03:28
-
-
Save joshblack/6391a2c2827939eb1cbd to your computer and use it in GitHub Desktop.
Whitelist transformers in `.babelrc` for projects
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
{ | |
"retainLines": true, | |
"compact": true, | |
"comments": false, | |
"whitelist": [ | |
"es6.arrowFunctions", | |
"es6.blockScoping", | |
"es6.classes", | |
"es6.constants", | |
"es6.destructuring", | |
"es6.modules", | |
"es6.parameters", | |
"es6.properties.computed", | |
"es6.properties.shorthand", | |
"es6.spread", | |
"es6.templateLiterals", | |
"es7.classProperties", | |
"es7.decorators", | |
"es7.exportExtensions", | |
"es7.objectRestSpread", | |
"flow", | |
"react", | |
"strict" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment