@nx/eslint
Version:
18 lines (17 loc) • 782 B
TypeScript
import { type Tree } from '@nx/devkit';
export declare const nxVersion: any;
export declare const minSupportedEslintVersion = "8.0.0";
export declare const eslintConfigPrettierVersion = "^10.0.0";
export declare const eslintrcVersion = "^2.1.1";
export declare const jsoncEslintParserVersion = "^2.1.0";
export declare const eslintCompat = "^1.1.1";
export declare const eslintVersion = "^9.8.0";
export declare const typescriptESLintVersion = "^8.40.0";
type EslintVersions = {
eslintVersion: string;
typescriptESLintVersion: string;
};
export declare function versions(tree: Tree): EslintVersions;
export declare function getInstalledEslintVersion(tree?: Tree): string | null;
export declare function getInstalledEslintMajorVersion(tree?: Tree): number | null;
export {};