From 340098d9447cae21f0efb7bf9900c8b8e0c918fa Mon Sep 17 00:00:00 2001 From: Alex Kaminskii Date: Tue, 20 Dec 2022 17:03:24 +0100 Subject: [PATCH] chore(frontend): typescript strictNullChecks & alwaysStrict --- frontend/tsconfig.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json index 49fa191a5..bfb9303da 100644 --- a/frontend/tsconfig.json +++ b/frontend/tsconfig.json @@ -3,6 +3,8 @@ "experimentalDecorators": true, "allowSyntheticDefaultImports": true, "noImplicitAny": true, + "alwaysStrict": true, + "strictNullChecks": true, "skipLibCheck": true, "forceConsistentCasingInFileNames": true, "resolveJsonModule": true,