Last active
March 19, 2018 15:37
-
-
Save tgoldenberg/863ebfd831feb861463da797e1ae8ae5 to your computer and use it in GitHub Desktop.
Sample Babel configuration
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": ["stage-2"], | |
| "plugins": [ | |
| ["transform-async-to-generator"], | |
| ["module-resolver", { | |
| "root": ["."], | |
| "alias": { | |
| "classes": "./src/classes", | |
| "store": "./src/store", | |
| "utils": "./src/utils", | |
| "models": "./src/models", | |
| "mining": "./src/mining", | |
| "db": "./src/db", | |
| "__mocks__": "./__mocks__" | |
| }, | |
| "cwd": "babelrc" | |
| }], | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment