From b2f56fcd12cf938f3e0cd98b96fd284ddf84b1a4 Mon Sep 17 00:00:00 2001 From: sercan Date: Thu, 4 Jul 2019 21:54:51 +0300 Subject: [PATCH] Disabled Angular compiler checks to disable the warnings until we fix them --- package.json | 2 +- .../changelog/changelog.component.html | 23 +++++++++++++++++++ tsconfig.json | 4 ++-- 3 files changed, 26 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 94c9cee4..9ca44a52 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fuse", - "version": "8.1.0", + "version": "8.1.1", "license": "https://themeforest.net/licenses/terms/regular", "scripts": { "ng": "ng", diff --git a/src/app/main/documentation/changelog/changelog.component.html b/src/app/main/documentation/changelog/changelog.component.html index 8111c91f..63d8912a 100644 --- a/src/app/main/documentation/changelog/changelog.component.html +++ b/src/app/main/documentation/changelog/changelog.component.html @@ -19,6 +19,29 @@
+ + + +
+ +
+ v8.1.1 + 2019.07.04 +
+ +
+ +
+ Fixed +
    +
  • Disabled Angular compiler checks until we fix the warnings
  • +
+
+ +
+ +
+ diff --git a/tsconfig.json b/tsconfig.json index 8747870f..7bdabc60 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -25,7 +25,7 @@ } }, "angularCompilerOptions": { - "fullTemplateTypeCheck": true, - "strictInjectionParameters": true + "fullTemplateTypeCheck": false, + "strictInjectionParameters": false } }