From d45fdaf21a413b83df78eb87605bf78e56b9a5f0 Mon Sep 17 00:00:00 2001 From: Nikita Pozdniakov Date: Wed, 29 Apr 2026 15:26:16 +0300 Subject: [PATCH] Enable strict TypeScript compiler checks --- tsconfig.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index d8c4679..cdf292f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,7 +10,10 @@ "@entities/*": ["src/entities/*"], "@shared/*": ["src/shared/*"], "@mocks/*": ["src/__mocks__/*"] - } + }, + "strict": true, + "noUnusedLocals": true, + "noUnusedParameters": true }, "include": [".astro/types.d.ts", "**/*"], "exclude": ["dist"]