From fb2d221e0f4e01f199e87f31d381cf3a4ada8ac5 Mon Sep 17 00:00:00 2001 From: Dzmitry Sviryn <93180688+zvirinz@users.noreply.github.com> Date: Wed, 29 Jun 2022 11:50:53 +0300 Subject: [PATCH] fix: wrong term it should be 'time' instead of 'speed' --- docs/basic/troubleshooting/ts-config.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/basic/troubleshooting/ts-config.md b/docs/basic/troubleshooting/ts-config.md index 0388556e..a6f27602 100644 --- a/docs/basic/troubleshooting/ts-config.md +++ b/docs/basic/troubleshooting/ts-config.md @@ -48,4 +48,4 @@ Selected flags and why we like them: - `strict`: `strictPropertyInitialization` forces you to initialize class properties or explicitly declare that they can be undefined. You can opt out of this with a definite assignment assertion. - `"typeRoots": ["./typings", "./node_modules/@types"]`: By default, TypeScript looks in `node_modules/@types` and parent folders for third party type declarations. You may wish to override this default resolution so you can put all your global type declarations in a special `typings` folder. -Compilation speed grows linearly with size of codebase. For large projects, you will want to use [Project References](https://www.typescriptlang.org/docs/handbook/project-references.html). See our [ADVANCED](https://react-typescript-cheatsheet.netlify.app/docs/advanced/intro/) cheatsheet for commentary. +Compilation time grows linearly with size of codebase. For large projects, you will want to use [Project References](https://www.typescriptlang.org/docs/handbook/project-references.html). See our [ADVANCED](https://react-typescript-cheatsheet.netlify.app/docs/advanced/intro/) cheatsheet for commentary.