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
// @filename: src/_producer.ts export function doit() {}
// @filename: src/_consumer.ts import { doit as doit2 } from "./_producer"; class Another {} class Consumer { constructor() { doit2(); } }
Doing move to a new file on Consumer generates the following 🐛 (note how doit2 does not exist in _producer.ts):
doit2
_producer.ts
// @filename: src/Consumer.ts import { doit2 } from "./_producer"; class Consumer { constructor() { doit2(); } }
The text was updated successfully, but these errors were encountered:
It works with me
Sorry, something went wrong.
I can reproduce in vscode 1.93.0-insider / 4849ca9bdf9666755eb463db297b69e5385090e3 and TS version 5.5.4
1.93.0-insider / 4849ca9bdf9666755eb463db297b69e5385090e3
iisaduan
Successfully merging a pull request may close this issue.
Doing move to a new file on Consumer generates the following 🐛 (note how
doit2
does not exist in_producer.ts
):The text was updated successfully, but these errors were encountered: