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
Noticed on a webpack project with [email protected], using either commonjs or es2015 modules:
// index.tsimport'./empty'asyncfunctionx(){}
// empty.ts
This emits an import for tslib following by the import for empty. However, commenting the import 'empty' line out also omits the import for tslib, and the emitted code attempts to use a global __awaiter.
I thought this might have been fixed by #12151, but it's still present in current master (built with gulp LKG).