Closed
Description
I am using typescript for my nodejs app, in es6 compilation mode, in some of my classes the generated js code looks like
class mediasController extends lib.baseClasses.apiControllerAsyncBase().apiControllerAsync { constructor(...args) { super(...args); this.xyz = {}; }
it has the es6 rest parameters which nodejs says as "unexpected token...",
please provide me with an alternative or solution of the same .