diff --git a/docs/users/Versioning.mdx b/docs/users/Versioning.mdx index 5f9f9450953f..f7431930bda7 100644 --- a/docs/users/Versioning.mdx +++ b/docs/users/Versioning.mdx @@ -48,7 +48,7 @@ Support for specific Current status releases are considered periodically. ### TypeScript -> The version range of TypeScript currently supported is `>=4.3.5 <5.1.0`. +> The version range of TypeScript currently supported is `>=4.3.5 <5.2.0`. Note that we mirror [DefinitelyTyped's version support window](https://github.com/DefinitelyTyped/DefinitelyTyped/#support-window) - meaning we only support versions of TypeScript less than 2 years old. diff --git a/packages/typescript-estree/src/parseSettings/warnAboutTSVersion.ts b/packages/typescript-estree/src/parseSettings/warnAboutTSVersion.ts index 682f7dcc35f8..57009bd01982 100644 --- a/packages/typescript-estree/src/parseSettings/warnAboutTSVersion.ts +++ b/packages/typescript-estree/src/parseSettings/warnAboutTSVersion.ts @@ -3,7 +3,7 @@ import * as ts from 'typescript'; import type { ParseSettings } from './index'; /** - * This needs to be kept in sync with /docs/maintenance/Versioning.mdx + * This needs to be kept in sync with /docs/users/Versioning.mdx * in the typescript-eslint monorepo */ const SUPPORTED_TYPESCRIPT_VERSIONS = '>=4.3.5 <5.2.0';