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
* Alias for `module.exports.x = x`
This fixes#40155 in a surprisingly small amount of code.
* Treat any aliasable expression as an alias
* test internal references to exported class
From the webpack user test:
Expected behavior:
No error, and
k: K
Actual behavior:
Error "'values' not found on 'typeof K'." and
k: typeof K
.Note: doesn't happen with
exports.K = class { values() {} }
The text was updated successfully, but these errors were encountered: