From 168a68e9eee9e333dfb457f065138481b139944c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Mon, 14 Oct 2024 14:51:19 +0200 Subject: [PATCH] chore: add two fields to tsconfig (#469) - Check file name casing in imports - Explicitly disallow JS --- tsconfig.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index 5533484e..2d60d6c3 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -9,6 +9,8 @@ "strict": true, "skipLibCheck": true, "resolveJsonModule": true, + "forceConsistentCasingInFileNames": true, + "allowJs": false, "isolatedModules": true, "verbatimModuleSyntax": true, "sourceMap": true,