From 82fa543e43fd0cb7e07bc404e8fbb0753f9311f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tristan=20Dani=C3=ABl=20Maat?= Date: Sat, 30 Jul 2022 17:55:13 +0100 Subject: [PATCH] Make typescript more strict --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index 9efa87c..993a0de 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,7 @@ { "compilerOptions": { "strictNullChecks": true, + "strictPropertyInitialization": true, "esModuleInterop": true, "jsx": "react" }