@nxext/stencil
Version:
Nx plugin for stenciljs
24 lines (21 loc) • 551 B
TypeScript
import { StencilBaseConfigOptions } from '../stencil-runtime/stencil-config';
import { ProjectType } from '../../utils/typings';
export interface StencilBuildOptions extends StencilBaseConfigOptions {
projectType?: ProjectType;
// Stencil compiler Options
ci?: boolean;
debug?: boolean;
dev?: boolean;
docsReadme?: boolean;
es5?: boolean;
log?: boolean;
prerender?: boolean;
ssr?: boolean;
prod?: boolean;
maxWorkers?: number;
port?: number;
serve?: boolean;
verbose?: boolean;
watch?: boolean;
noOpen?: boolean;
}