From 355faa0d555a6a9a7e7a220e64723b469ea9de4a Mon Sep 17 00:00:00 2001 From: Gary Hunt Date: Sun, 19 Feb 2023 16:36:17 +0000 Subject: [PATCH] Update tsconfig.json with forceConsistentCasingInFilenames see typescript-config/consistentcasing recommendation from Microsoft Edge Tools This will ensure that Windows and *nix behave consistently and that references are case sensitive --- typings/tsconfig.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/typings/tsconfig.json b/typings/tsconfig.json index 9ad2ddb3..f31345d4 100644 --- a/typings/tsconfig.json +++ b/typings/tsconfig.json @@ -2,10 +2,11 @@ "compilerOptions": { "noEmit": true, "jsx": "preserve", - "strict": true + "strict": true, + "forceConsistentCasingInFileNames": true }, "files": [ "index.d.ts", "test.tsx" ] -} \ No newline at end of file +}