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
TypeScript Version: 2.9.2
Search Terms:
Code For a project:
index.ts
import { abc } from './sub/aBc'; console.log(abc)
sub/aBc.ts
export const abc = 123;
sub
sub2
Expected behavior: index.ts becomes:
import { abc } from './sub2/aBc'; console.log(abc)
Actual behavior: File casing on aBc lost. index.ts becomes:
aBc
import { abc } from './sub2/abc'; console.log(abc)
The text was updated successfully, but these errors were encountered:
I'm going to add a workaround for this on the VS Code side too since we won't be picking up TS 3.0 this iteration
Sorry, something went wrong.
Add workaround for microsoft/TypeScript#24968
ae7d3eb
No branches or pull requests
TypeScript Version: 2.9.2
Search Terms:
Code
For a project:
index.ts
sub/aBc.ts
sub
tosub2
Expected behavior:
index.ts
becomes:Actual behavior:
File casing on
aBc
lost.index.ts
becomes:The text was updated successfully, but these errors were encountered: