Skip to content

Commit

Permalink
chore(typescript-estree): fix peer deps range
Browse files Browse the repository at this point in the history
  • Loading branch information
sosukesuzuki committed Mar 4, 2022
1 parent e6252bc commit 361c98f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -51,7 +51,7 @@ The latest version under the `canary` tag **(latest commit to `main`)** is:

### Supported TypeScript Version

**The version range of TypeScript currently supported by this parser is `>=3.3.1 <4.6.0`.**
**The version range of TypeScript currently supported by this parser is `>=3.3.1 <4.7.0`.**

These versions are what we test against.

Expand Down
2 changes: 1 addition & 1 deletion packages/typescript-estree/src/parser.ts
Expand Up @@ -30,7 +30,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 <4.6.0';
const SUPPORTED_TYPESCRIPT_VERSIONS = '>=3.3.1 <4.7.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 361c98f

Please sign in to comment.