Im having trouble getting async / await transforms working. What am I missing?
My .babelrc:
{ \"presets\": [ \"es2015\", \"stage-0\" ] }
Use the Async to generator transform.
$ npm install babel-plugin-transform-async-to-generator
Add the following line to your .babelrc file:
.babelrc
{ "plugins": ["transform-async-to-generator"] }