From 4ae8790cbae6a13f66cc9f3a89d0e99f24215152 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Sat, 24 Jul 2021 13:20:56 +0200 Subject: [PATCH] Add `strict` to `tsconfig.json` --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index be08abe..e31adf8 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,6 +10,7 @@ "declaration": true, "emitDeclarationOnly": true, "allowSyntheticDefaultImports": true, - "skipLibCheck": true + "skipLibCheck": true, + "strict": true } }