From 07887b120cb8bfeccb3a9dd2d65c4da9d84a3e60 Mon Sep 17 00:00:00 2001 From: caucik Date: Mon, 19 Apr 2021 23:18:31 +0200 Subject: [PATCH] docs: Incorrect tsconfig option name (#10140) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Bartek IwaƄczuk --- docs/typescript/configuration.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/typescript/configuration.md b/docs/typescript/configuration.md index 4ab09dc6b7..f0eaf65bc0 100644 --- a/docs/typescript/configuration.md +++ b/docs/typescript/configuration.md @@ -44,7 +44,7 @@ and any other notes about that option: | `jsx` | `"react"` | | | `jsxFactory` | `"React.createElement"` | | | `jsxFragmentFactory` | `"React.Fragment"` | | -| `keysofStringsOnly` | `false` | | +| `keyofStringsOnly` | `false` | | | `lib` | `[ "deno.window" ]` | The default for this varies based on other settings in Deno. If it is supplied, it overrides the default. See below for more information. | | `noFallthroughCasesInSwitch` | `false` | | | `noImplicitAny` | `true` | | @@ -56,7 +56,7 @@ and any other notes about that option: | `noUnusedParameters` | `false` | | | `reactNamespace` | `React` | | | `strict` | `true` | | -| `strictBindApply` | `true` | | +| `strictBindCallApply` | `true` | | | `strictFunctionTypes` | `true` | | | `strictPropertyInitialization` | `true` | | | `strictNullChecks` | `true` | |