@nx/nuxt
Version:
11 lines (10 loc) • 384 B
TypeScript
import { Tree } from 'nx/src/generators/tree';
import { Linter, LinterType } from '@nx/eslint';
import { GeneratorCallback } from '@nx/devkit';
export declare function addLinting(host: Tree, options: {
linter: Linter | LinterType;
projectName: string;
projectRoot: string;
unitTestRunner?: 'vitest' | 'none';
rootProject?: boolean;
}): Promise<GeneratorCallback>;