diff options
author | caucik <martin.caucik@gmail.com> | 2021-04-19 23:18:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-20 07:18:31 +1000 |
commit | 07887b120cb8bfeccb3a9dd2d65c4da9d84a3e60 (patch) | |
tree | e1c3c4ecc5b32b9356d43bf9e91ecdd795eb9d56 /docs/typescript | |
parent | fe8057105e67b7120ec1fc9debeda4c0535d7b2a (diff) |
docs: Incorrect tsconfig option name (#10140)
Co-authored-by: Bartek IwaĆczuk <biwanczuk@gmail.com>
Diffstat (limited to 'docs/typescript')
-rw-r--r-- | docs/typescript/configuration.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/typescript/configuration.md b/docs/typescript/configuration.md index 4ab09dc6b..f0eaf65bc 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` | | |