You need to disable the forceConsistentCasingInFileNames
in the tsconfig.json
file.
So you should have something like that:
{
"compilerOptions": {
"forceConsistentCasingInFileNames": false,
}
}
You need to disable the forceConsistentCasingInFileNames
in the tsconfig.json
file.
So you should have something like that:
{
"compilerOptions": {
"forceConsistentCasingInFileNames": false,
}
}