@nxext/stencil
Version:
Nx plugin for stenciljs
26 lines (23 loc) • 627 B
TypeScript
import { AppType } from './../../utils/typings';
import { SupportedStyles } from '../../stencil-core-utils';
import { Linter } from '@nrwl/linter';
export interface RawApplicationSchema {
name: string;
tags?: string;
directory?: string;
style?: SupportedStyles;
skipFormat?: boolean;
appType?: AppType;
e2eTestRunner?: string;
unitTestRunner?: string;
projectRoot?: string;
linter?: Linter;
}
export interface ApplicationSchema extends RawApplicationSchema {
projectName: string;
projectRoot: string;
projectDirectory: string;
parsedTags: string[];
appType: AppType;
style: SupportedStyles;
}