UNPKG

@nxext/stencil

Version:

Nx plugin for stenciljs

15 lines (14 loc) 1.34 kB
import { TargetConfiguration } from '@nrwl/devkit'; import { LibrarySchema } from '../generators/library/schema'; import { PWASchema } from '../generators/ionic-pwa/schema'; import { ApplicationSchema } from '../generators/application/schema'; import { MakeLibBuildableSchema } from '../generators/make-lib-buildable/schema'; import { ProjectType } from '@nrwl/workspace'; export declare function getDefaultTargets(projectType: ProjectType, options: LibrarySchema | PWASchema | ApplicationSchema | MakeLibBuildableSchema): { [key: string]: TargetConfiguration; }; export declare function getBuildTarget(projectType: ProjectType, options: LibrarySchema | PWASchema | ApplicationSchema | MakeLibBuildableSchema): TargetConfiguration; export declare function getTestTarget(projectType: ProjectType, options: LibrarySchema | PWASchema | ApplicationSchema | MakeLibBuildableSchema): TargetConfiguration; export declare function getE2eTarget(projectType: ProjectType, options: LibrarySchema | PWASchema | ApplicationSchema | MakeLibBuildableSchema): TargetConfiguration; export declare function getServeTarget(projectType: ProjectType, options: LibrarySchema | PWASchema | ApplicationSchema | MakeLibBuildableSchema): TargetConfiguration; export declare function getLintTarget(projectType: ProjectType, projectRoot: string): TargetConfiguration;