Created
February 23, 2018 20:16
-
-
Save dkarter/b962d98cca1a14432ddf5dcf7f8d1818 to your computer and use it in GitHub Desktop.
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": { | |
"browsers": "> 1%", | |
"uglify": true | |
}, | |
"useBuiltIns": true | |
} | |
], | |
"react", | |
"stage-2", | |
"stage-3" | |
], | |
"plugins": [ | |
"syntax-dynamic-import", | |
[ | |
"transform-class-properties", | |
{ | |
"spec": true | |
} | |
], | |
"transform-object-assign", | |
[ | |
"module-alias", | |
[ | |
{ | |
"src": "./app/javascript/packs", | |
"expose": "packs" | |
}, | |
{ "src": "./app/assets/stylesheets", "expose": "stylesheets" }, | |
{ "src": "./app/assets/images", "expose": "images" } | |
] | |
] | |
], | |
"env": { | |
"development": { | |
"presets": ["react-hmre"] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment