UNPKG

@nx/nuxt

Version:

The Nuxt plugin for Nx contains executors and generators for managing Nuxt applications and libraries within an Nx workspace. It provides: - Integration with libraries such as Vitest, Playwright, Cypress, and Storybook. - Generators for applications, l

11 lines (10 loc) 384 B
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>;