From 1dd2a15770ccb262af7f946cdca06cce3cf40f6b Mon Sep 17 00:00:00 2001 From: spalger Date: Thu, 25 Feb 2021 09:54:32 -0700 Subject: [PATCH] [ts] disable forceConsistentCasingInFileNames, it seems broken --- tsconfig.base.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.base.json b/tsconfig.base.json index c63d43b4cb6ad5..865806cffe5bb1 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -39,7 +39,7 @@ // "resolveJsonModule" allows for importing, extracting types from and generating .json files. "resolveJsonModule": true, // Disallow inconsistently-cased references to the same file. - "forceConsistentCasingInFileNames": true, + "forceConsistentCasingInFileNames": false, // Forbid unused local variables as the rule was deprecated by ts-lint "noUnusedLocals": true, // Provide full support for iterables in for..of, spread and destructuring when targeting ES5 or ES3.