From 33d0812019f5dd90dcf4c636ed06df7b324b5049 Mon Sep 17 00:00:00 2001 From: Miodec Date: Thu, 18 Jan 2024 23:33:50 +0100 Subject: [PATCH] build(backend): enable more ts flags --- backend/tsconfig.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/backend/tsconfig.json b/backend/tsconfig.json index 02f2bf5c7..16946c21c 100644 --- a/backend/tsconfig.json +++ b/backend/tsconfig.json @@ -14,7 +14,9 @@ "strictNullChecks": true, "skipLibCheck": false, "noImplicitReturns": true, - "noPropertyAccessFromIndexSignature": true + "noPropertyAccessFromIndexSignature": true, + "noFallthroughCasesInSwitch": true, + "forceConsistentCasingInFileNames": true }, "ts-node": { "files": true