This repository was archived by the owner on Apr 9, 2020. It is now read-only.

Description
If I do not transpile down ES6 classes to ES5, I received:
Class constructors cannot be invoked without 'new'
Basically I have to use babel-plugin-transform-es2015-classes
, even though Node.js and modern browsers already have support for ES6 classes.
Is there some way to work around this?