From b5f279691c5a7f4802d4e15ec988620caee99236 Mon Sep 17 00:00:00 2001 From: rhpidfyre Date: Sat, 22 Feb 2025 00:23:55 -0500 Subject: [PATCH] update tsconfig.json to be more strict --- tsconfig.json | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 07bf590..56fc357 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,8 +1,10 @@ { - "extends": "astro/tsconfigs/strict", - "include": [".astro/types.d.ts", "**/*"], - "exclude": ["dist"], - "compilerOptions": { - "noImplicitAny": true - } + "extends": "astro/tsconfigs/strict", + "include": [".astro/types.d.ts", "**/*"], + "exclude": ["dist"], + "compilerOptions": { + "noImplicitAny": true, + "noUnusedLocals": true, + "allowUnusedLabels": false + } } \ No newline at end of file