From d036fd5f51d33f7f45772d7de2653919b6226916 Mon Sep 17 00:00:00 2001 From: iam4x Date: Mon, 5 Mar 2018 10:57:58 +0100 Subject: [PATCH] chore(tsconfig-aot): ensure strict rules --- tsconfig-aot.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tsconfig-aot.json b/tsconfig-aot.json index a14c53bc4..4d396d447 100644 --- a/tsconfig-aot.json +++ b/tsconfig-aot.json @@ -13,6 +13,10 @@ "sourceMap": true, "inlineSources": true, "strictNullChecks": true, + "noImplicitThis": true, + "alwaysStrict": true, + "strictFunctionTypes": true, + "strictPropertyInitialization": false, "noStrictGenericChecks": false, "skipLibCheck": true },