Description
Bug Report
๐ Search Terms
forceConsistentCasingInFileNames
node_modules
๐ Version & Regression Information
- This is the behavior in every version I tried, and I reviewed the FAQ for entries about
forceConsistentCasingInFileNames
โฏ Playground Link
Not availableโrequires node_modules
folder
๐ป Code
With forceConsistentCasingInFileNames
enabled and fp-ts
installed in node_modules
:
src/struct.d.ts
:
export const foo = 1;
// Expected error, but got none โ
import * as xs1 from "fp-ts/lib/Struct";
// Expected error, but got none โ
import * as xs2 from "fp-ts/lib/struct";
// Error as expected โ
import * as xs3 from "./Struct";
// Error as expected โ
import * as xs4 from "./struct";
๐ Actual behavior
See code comments above.
๐ Expected behavior
See code comments above.