Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
bradzacher committed May 21, 2020
1 parent 159c225 commit 5eedbff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/typescript-estree/src/parser.ts
Expand Up @@ -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
Expand Down

0 comments on commit 5eedbff

Please sign in to comment.