Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save thecodermehedi/8cca0d2d706506e8b94e5b08167bdc08 to your computer and use it in GitHub Desktop.
Save thecodermehedi/8cca0d2d706506e8b94e5b08167bdc08 to your computer and use it in GitHub Desktop.
'File name differs from already included file name only in casing' on relative path with same casing

You need to disable the forceConsistentCasingInFileNames in the tsconfig.json file.

So you should have something like that:

{
  "compilerOptions": {
    "forceConsistentCasingInFileNames": false,
  }
}

orginal issue discussion

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment