From 5eedbff01178ea33b98ab22e556df4c1a195f839 Mon Sep 17 00:00:00 2001 From: Brad Zacher Date: Thu, 21 May 2020 15:21:46 -0700 Subject: [PATCH] fix(typescript-estree): mark TS 3.8 and 3.9 as "supported" (#2057) 3.8 isn't truly supported yet (#1436), but it will work fine - just can't lint private fields. We _want_ people to upgrade as 3.9 is much better and faster! So this increases the version range so 3.8 and 3.9 will stop logging the unsupported warning. #1436 is pinned in our issues, so that's about as good as we can do. --- packages/typescript-estree/src/parser.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/typescript-estree/src/parser.ts b/packages/typescript-estree/src/parser.ts index 7c2744d32a0..88fa5d503b8 100644 --- a/packages/typescript-estree/src/parser.ts +++ b/packages/typescript-estree/src/parser.ts @@ -20,7 +20,7 @@ const log = debug('typescript-eslint:typescript-estree:parser'); * This needs to be kept in sync with the top-level README.md in the * typescript-eslint monorepo */ -const SUPPORTED_TYPESCRIPT_VERSIONS = '>=3.3.1 <3.8.0'; +const SUPPORTED_TYPESCRIPT_VERSIONS = '>=3.3.1 <3.10.0'; /* * The semver package will ignore prerelease ranges, and we don't want to explicitly document every one * List them all separately here, so we can automatically create the full string