From da21c72c7f3e9b900984b0d8f0267f8a638716a3 Mon Sep 17 00:00:00 2001 From: Alan Agius Date: Wed, 21 Oct 2020 10:54:48 +0200 Subject: [PATCH] docs: add strictInputAccessModifiers to strict mode guide (#39353) This change also remove the duplicate mention of strictTemplates PR Close #39353 --- aio/content/guide/strict-mode.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/strict-mode.md b/aio/content/guide/strict-mode.md index 046c6c1921..4b0961cf61 100644 --- a/aio/content/guide/strict-mode.md +++ b/aio/content/guide/strict-mode.md @@ -8,7 +8,7 @@ Additionally, applications that use these stricter settings are easier to static Specifically, the `strict` flag does the following: * Enables [`strict` mode in TypeScript](https://www.staging-typescript.org/tsconfig#strict), as well as other strictness flags recommended by the TypeScript team. Specifically, `forceConsistentCasingInFileNames`, `noImplicitReturns`, `noFallthroughCasesInSwitch`. -* Turns on strict Angular compiler flags [`strictTemplates`](guide/angular-compiler-options#stricttemplates), [`strictInjectionParameters`](guide/angular-compiler-options#strictinjectionparameters) and [`strictTemplates`](guide/angular-compiler-options#stricttemplates). +* Turns on strict Angular compiler flags [`strictTemplates`](guide/angular-compiler-options#stricttemplates), [`strictInjectionParameters`](guide/angular-compiler-options#strictinjectionparameters) and [`strictInputAccessModifiers`](guide/template-typecheck#troubleshooting-template-errors). * [Bundle size budgets](guide/build#configuring-size-budgets) have been reduced by ~75%. You can apply these settings at the workspace and project level.