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
A class expression being default exported will be incorrectly compiled into a named export instead.
Example:
exportdefaultclassFoo{}
compiles into:
classFoo{}exports.Foo=Foo;
The text was updated successfully, but these errors were encountered:
ghalle
changed the title
export default broken for Class with target ES6 and commonjs module
export default broken for Class expression with target ES6 and commonjs module
Nov 10, 2015
Using typescript@next and the following compiler options:
A class expression being default exported will be incorrectly compiled into a named export instead.
Example:
compiles into:
The text was updated successfully, but these errors were encountered: