From 79a42d951e8957f843bc85f402a215c1a9ed45c5 Mon Sep 17 00:00:00 2001 From: Amadou Sall Date: Thu, 10 Dec 2020 09:47:11 +0100 Subject: [PATCH] docs: update the link to the TypeScript documentation for strict mode (#40063) PR Close #40063 --- 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 4b0961cf61..c82151770c 100644 --- a/aio/content/guide/strict-mode.md +++ b/aio/content/guide/strict-mode.md @@ -7,7 +7,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`. +* Enables [`strict` mode in TypeScript](https://www.typescriptlang.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 [`strictInputAccessModifiers`](guide/template-typecheck#troubleshooting-template-errors). * [Bundle size budgets](guide/build#configuring-size-budgets) have been reduced by ~75%.