UNPKG

438 BPlain TextView Raw
1{
2 "presets": ["es2015"],
3 "plugins": [
4 // this transforms async functions into generator functions, which
5 // are then made to use the regenerator module by babel's
6 // transform-regnerator plugin (which is enabled by es2015).
7 "transform-async-to-bluebird",
8
9 // This makes sure that the regenerator runtime is available to
10 // the transpiled code.
11 "transform-runtime",
12 ],
13}