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
import { X } from "abc"; // assume Y is a type only namespace import Z = X.Y.Z; function a(t: Z.T) { console.log(t); }
import { X } from "abc"; var Z = X.Y.Z; function a(t) { console.log(t); }
The Z is a typing, it should be removed.
Z
function a(t) { console.log(t); }
The bable also have a issue babel/babel#15942, and also have a pr to resolve it babel/babel#17025.
related rolldown/rolldown#3287
The text was updated successfully, but these errors were encountered:
import =
only_remove_type_imports
Dunqing
Successfully merging a pull request may close this issue.
Input
Output
Expected
The
Z
is a typing, it should be removed.The bable also have a issue babel/babel#15942, and also have a pr to resolve it babel/babel#17025.
related rolldown/rolldown#3287
The text was updated successfully, but these errors were encountered: