Quick fix imports added before hashbang #20088
Labels
Bug
A bug in TypeScript
Fixed
A PR has been merged for this issue
VS Code Tracked
There is a VS Code equivalent to this issue
Milestone
From microsoft/vscode#38541
TypeScript Version: 2.7.0-dev.20171116
Code
In a project:
x.ts
:main.ts
:#!/usr/bin/env node abc
Trigger a quick fix to add a missing import on
abc
Expected behavior:
#!/usr/bin/env node
import { abc } from "./y";
abc
Actual behavior:
Import added before the hashbang
The text was updated successfully, but these errors were encountered: