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
when I use transpileOnly : true , const enum will not work。 I think it is reasonable, but it would be good if had a description in the document
// test.d.ts declare namespace Test { export const enum Hello { Hello = 1 } }
// index.ts console.log(Test.Hello.Hello)
The text was updated successfully, but these errors were encountered:
#331
Sorry, something went wrong.
No branches or pull requests
Expected Behaviour
when I use transpileOnly : true , const enum will not work。 I think it is reasonable, but it would be good if had a description in the document
Actual Behaviour
Steps to Reproduce the Problem
Location of a Minimal Repository that Demonstrates the Issue.
The text was updated successfully, but these errors were encountered: