From ef317a86ed2124205dd57070df553c7c80ab3692 Mon Sep 17 00:00:00 2001 From: Thomas <4159106+dtslvr@users.noreply.github.com> Date: Sun, 25 Apr 2021 17:41:53 +0200 Subject: [PATCH] Setup angular compiler options (#45) --- .../portfolio-performance-summary.component.html | 8 ++++---- .../portfolio-performance.component.html | 12 ++++++------ .../position-detail-dialog.html | 6 +++--- .../app/components/position/position.component.html | 6 +++--- .../positions-table/positions-table.component.html | 8 ++++---- .../transactions-table.component.html | 6 +++--- apps/client/tsconfig.json | 6 +++++- 7 files changed, 28 insertions(+), 24 deletions(-) diff --git a/apps/client/src/app/components/portfolio-performance-summary/portfolio-performance-summary.component.html b/apps/client/src/app/components/portfolio-performance-summary/portfolio-performance-summary.component.html index 45da452b2..42aa5a683 100644 --- a/apps/client/src/app/components/portfolio-performance-summary/portfolio-performance-summary.component.html +++ b/apps/client/src/app/components/portfolio-performance-summary/portfolio-performance-summary.component.html @@ -34,16 +34,16 @@
@@ -76,9 +76,9 @@
diff --git a/apps/client/src/app/components/position/position.component.html b/apps/client/src/app/components/position/position.component.html index 41124ce08..01335e625 100644 --- a/apps/client/src/app/components/position/position.component.html +++ b/apps/client/src/app/components/position/position.component.html @@ -42,14 +42,14 @@
diff --git a/apps/client/src/app/components/positions-table/positions-table.component.html b/apps/client/src/app/components/positions-table/positions-table.component.html index 7591c4daf..2e6909ff7 100644 --- a/apps/client/src/app/components/positions-table/positions-table.component.html +++ b/apps/client/src/app/components/positions-table/positions-table.component.html @@ -28,8 +28,8 @@
@@ -50,7 +50,7 @@
@@ -71,7 +71,7 @@
diff --git a/apps/client/src/app/components/transactions-table/transactions-table.component.html b/apps/client/src/app/components/transactions-table/transactions-table.component.html index c0aa40c18..f9d561558 100644 --- a/apps/client/src/app/components/transactions-table/transactions-table.component.html +++ b/apps/client/src/app/components/transactions-table/transactions-table.component.html @@ -116,7 +116,7 @@
@@ -137,7 +137,7 @@
@@ -158,7 +158,7 @@
diff --git a/apps/client/tsconfig.json b/apps/client/tsconfig.json index 81cb95e9d..ef2f9a61f 100644 --- a/apps/client/tsconfig.json +++ b/apps/client/tsconfig.json @@ -12,5 +12,9 @@ { "path": "./tsconfig.editor.json" } - ] + ], + "angularCompilerOptions": { + "strictInjectionParameters": true, + "strictTemplates": false + } }