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
Hi, it looks like union types are breaking the bundling process.
original:
export type MyType = "a" | "b" | "c"; export const AnotherType = { One: "a" as MyType, Two: "b" as MyType, Three: "c" as MyType };
Output (from the top of the file, there is a blank line first):
One: "a" | "b" | "c"; Two: "a" | "b" | "c"; Three: "a" | "b" | "c"; };
I'll try to dig in more and see if I can find the bug, but could someone take a look?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, it looks like union types are breaking the bundling process.
original:
Output (from the top of the file, there is a blank line first):
I'll try to dig in more and see if I can find the bug, but could someone take a look?
The text was updated successfully, but these errors were encountered: