From f82528a69a59afbc69c9c6e73c896f481a45a91a Mon Sep 17 00:00:00 2001 From: Ivan Grokhotkov Date: Tue, 17 Jan 2023 10:10:21 +0800 Subject: [PATCH] enable strict mode --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 730b555..ff66898 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -12,7 +12,8 @@ "forceConsistentCasingInFileNames": true, "lib": ["ES2020", "DOM"], "importHelpers": true, - "resolveJsonModule": true + "resolveJsonModule": true, + "strict": true }, "include": ["src/**/*"] }