Skip to content

Commit 30074a8

Browse files
authored
fix(typescript-estree): update conditions for unsupported version warning (#10385)
1 parent 2e2433b commit 30074a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/typescript-estree/src/parseSettings/warnAboutTSVersion.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import type { ParseSettings } from './index';
66
/**
77
* This needs to be kept in sync with package.json in the typescript-eslint monorepo
88
*/
9-
const SUPPORTED_TYPESCRIPT_VERSIONS = '>=4.7.4 <5.7.0';
9+
const SUPPORTED_TYPESCRIPT_VERSIONS = '>=4.8.4 <5.8.0';
1010

1111
/*
1212
* The semver package will ignore prerelease ranges, and we don't want to explicitly document every one

0 commit comments

Comments
 (0)