Last active
April 6, 2018 03:29
-
-
Save sandalsoft/1621509c1dd9792c4c9118f29de56db5 to your computer and use it in GitHub Desktop.
babelrc
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": [ | |
| [ | |
| "env", | |
| { | |
| "targets": { | |
| "node": "current" | |
| } | |
| } | |
| ] | |
| ], | |
| "plugins": [ | |
| [ | |
| "module-resolver", | |
| { | |
| "root": ["./"], | |
| "alias": { | |
| "@util": "./src/util", | |
| "@config": "./config" | |
| } | |
| } | |
| ], | |
| "transform-es2015-spread", | |
| "transform-object-rest-spread", | |
| "transform-async-to-generator", | |
| "transform-es2015-modules-commonjs" | |
| ], | |
| "sourceMaps": "both" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment