Skip to content

Commit 497b4cb

Browse files
committed
ope
1 parent de9ae4e commit 497b4cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test-projects/configs/flat-ts/eslint.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import { createRequire } from 'node:module';
2525
const require = createRequire(import.meta.url);
2626
const manifestPath = require.resolve('@typescript-eslint/parser/package.json');
2727
const manifest = require(manifestPath);
28-
const isV8 = manifest.version[0] > 8;
28+
const isV8 = parseInt(manifest.version[0]) >= 8;
2929

3030
const parserOptions = {
3131
esm: {

0 commit comments

Comments
 (0)