I recently changed the name of a file from FooBar.ts
to fooBar.ts
. Despite updating the file name, VS Code continues to refer back to the old file. In order to resolve this issue, I disabled forceConsistentCasingInFileNames
in the tsconfig.json
file. However, even after making this change, when attempting to add imports automatically, VS Code still points to the original file.
I have tried clearing the cache, but the error persists. Is there something I am overlooking or missing in my configuration settings?