UNPKG

@nxext/stencil

Version:

Nx plugin for stenciljs

11 lines (9 loc) 273 B
export type OutputTargetType = 'angular' | 'react' | 'vue'; export interface AddOutputtargetSchematicSchema { projectName: string; outputType: OutputTargetType; publishable: boolean; importPath?: string; unitTestRunner: 'jest' | 'none'; skipFormat: boolean; }