From 2a7c41a7fe38990f5d9d2ea2279700985ae22119 Mon Sep 17 00:00:00 2001 From: David Mehren Date: Sun, 12 Apr 2020 14:23:36 +0200 Subject: [PATCH] Always use strict mode Signed-off-by: David Mehren --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 259b97e75..8773f510a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -9,7 +9,8 @@ "experimentalDecorators": true, "emitDecoratorMetadata": true, "sourceMap": true, - "lib": ["ES2019"] + "lib": ["ES2019"], + "alwaysStrict": true }, "include": [ "./lib/**/*"