We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
class A { foo: string; } class B extends A { bar: string; }
compiling with --target ES6 currently still uses our own __extends and not ES6 classes.
The text was updated successfully, but these errors were encountered:
__extends
If a class is located in an internal module, is it possible to generate an ES6 class?
Sorry, something went wrong.
@Tarh classes are just expressions in ES6, so there shouldn't be a problem as far as I can tell.
The feature is implemented and pull into master. PR #2333
No branches or pull requests
class A { foo: string; }
class B extends A { bar: string; }
compiling with --target ES6 currently still uses our own __extends and not ES6 classes.
The text was updated successfully, but these errors were encountered: