babel-preset-latest cannot support class?
any other advice for me? thanks a lot.
This is not enough information, I don't understand your problem. With this template, Babel should transpile classes to ES5
Your error sounds like you did this:
var something = YourClass()
Where you should do this:
var something = new YourClass()
Closing for inactivity.
@LinusBorg thanks you saved my life
Most helpful comment
Your error sounds like you did this:
Where you should do this: