You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
move ./Foo/foo.ts for example into ./test directory
Expected behavior:
./index.ts should be:
import{foo}from'./test/Foo/foo';
Actual behavior:
./index.ts is be:
import{foo}from'./test/foo/foo';// lower cased
Related Issues:
I saw #21736 which speaks about a --forceConsistentCasingInFileNames flag as well as a TSServer option useCaseSensitiveFileNames. Not sure if these options can be applied here.
Tested on Mac with case insensitive file system. (Lower cases my imports, breaks CI.)
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
TypeScript Version: 2.9.2
Search Terms: renameFile, case, import, path, refactor
Code
./Foo/foo.ts
for example into./test
directoryExpected behavior:
./index.ts
should be:Actual behavior:
./index.ts
is be:Related Issues:
I saw #21736 which speaks about a
--forceConsistentCasingInFileNames
flag as well as a TSServer optionuseCaseSensitiveFileNames
. Not sure if these options can be applied here.Tested on Mac with case insensitive file system. (Lower cases my imports, breaks CI.)
The text was updated successfully, but these errors were encountered: