@nxext/stencil
Version:
Nx plugin for stenciljs
13 lines (10 loc) • 354 B
TypeScript
import { OutputTargetType } from './lib/add-outputtarget-to-config';
export type OutputTargetType = 'angular' | 'react' | 'vue' | 'svelte';
export interface AddOutputtargetSchematicSchema {
projectName: string;
outputType: OutputTargetType;
publishable: boolean;
importPath?: string;
unitTestRunner: 'jest' | 'none',
skipFormat: boolean;
}