From 27b915808ff279b189e1a175515e2a12b5022b82 Mon Sep 17 00:00:00 2001 From: Jason Fields Date: Thu, 14 Oct 2021 01:10:04 -0400 Subject: [PATCH] Enable `forceConsistentCasingInFileNames` in tsconfig See www.typescriptlang.org/tsconfig#forceConsistentCasingInFileNames --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 30d7b6bca21..2c1543a0897 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -17,7 +17,8 @@ "paths": { "platform/*": ["src/platform/node/*"] }, - "resolveJsonModule": true + "resolveJsonModule": true, + "forceConsistentCasingInFileNames": true }, "exclude": ["node_modules", "!node_modules/@types"] }