There was an error while loading. Please reload this page.
forceConsistentCasingInFileNames
node_modules
Not availableβrequires node_modules folder
With forceConsistentCasingInFileNames enabled and fp-ts installed in node_modules:
fp-ts
src/struct.d.ts:
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";
See code comments above.