You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using babel for transpiling like: TSX -> ES6 -> Babel + webpack -> ES5
and I set noEmitHelpers to true in tsconfig.json, because babel handle it with single global helper instead of multiple helpers in each file but it doesn't work with Acyncs and Decorators and after compile i'm getting __decorate(...)
and
I'm using babel for transpiling like:
TSX -> ES6 -> Babel + webpack -> ES5
and I set
noEmitHelpers
totrue
intsconfig.json
, because babel handle it with single global helper instead of multiple helpers in each file but it doesn't work with Acyncs and Decorators and after compile i'm getting__decorate(...)
and
How can I prevent tsc to compile Asyncs and Decorators and let babel handle them?
The text was updated successfully, but these errors were encountered: