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

31 lines (28 loc) 811 B
import type { Linter, LinterType } from '@nx/eslint'; export interface Schema { directory: string; name?: string; linter?: Linter | LinterType; formatter?: 'none' | 'prettier'; skipFormat?: boolean; unitTestRunner?: 'vitest' | 'none'; e2eTestRunner?: 'cypress' | 'playwright' | 'none'; tags?: string; js?: boolean; skipPackageJson?: boolean; rootProject?: boolean; setParserOptionsProject?: boolean; style?: 'css' | 'scss' | 'less' | 'none'; nxCloudToken?: string; useTsSolution?: boolean; useProjectJson?: boolean; } export interface NormalizedSchema extends Omit<Schema, 'useTsSolution'> { projectName: string; appProjectRoot: string; importPath: string; e2eProjectName: string; e2eProjectRoot: string; parsedTags: string[]; isUsingTsSolutionConfig: boolean; }