Disabled Angular compiler checks to disable the warnings until we fix them

This commit is contained in:
sercan 2019-07-04 21:54:51 +03:00
parent 72fd2dd22d
commit b2f56fcd12
3 changed files with 26 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "fuse", "name": "fuse",
"version": "8.1.0", "version": "8.1.1",
"license": "https://themeforest.net/licenses/terms/regular", "license": "https://themeforest.net/licenses/terms/regular",
"scripts": { "scripts": {
"ng": "ng", "ng": "ng",

View File

@ -19,6 +19,29 @@
<div class="changelog"> <div class="changelog">
<!-- --------------------------------------------------------------------------------------------- -->
<!-- @ v8.1.1 -->
<!-- --------------------------------------------------------------------------------------------- -->
<div class="entry">
<div class="title">
<span class="version">v8.1.1</span>
<span class="date">2019.07.04</span>
</div>
<div class="groups">
<div class="fixed">
<span class="title">Fixed</span>
<ul>
<li>Disabled Angular compiler checks until we fix the warnings</li>
</ul>
</div>
</div>
</div>
<!-- --------------------------------------------------------------------------------------------- --> <!-- --------------------------------------------------------------------------------------------- -->
<!-- @ v8.1.0 --> <!-- @ v8.1.0 -->
<!-- --------------------------------------------------------------------------------------------- --> <!-- --------------------------------------------------------------------------------------------- -->

View File

@ -25,7 +25,7 @@
} }
}, },
"angularCompilerOptions": { "angularCompilerOptions": {
"fullTemplateTypeCheck": true, "fullTemplateTypeCheck": false,
"strictInjectionParameters": true "strictInjectionParameters": false
} }
} }