From 511593dfc0b1bc3348d2c1ebff66b847124058cd Mon Sep 17 00:00:00 2001 From: Fractal-Tess Date: Sat, 13 May 2023 00:11:30 +0300 Subject: [PATCH] add strict --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 1ec6eeb..70fc938 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,10 +1,11 @@ { "extends": "@tsconfig/svelte/tsconfig.json", "compilerOptions": { + "strict": true, + "noUncheckedIndexedAccess": true, "target": "ESNext", "useDefineForClassFields": true, "module": "ESNext", - "resolveJsonModule": true, "baseUrl": ".", "allowJs": true, "checkJs": true,