@nxext/stencil
Version:
Nx plugin for stenciljs
19 lines (18 loc) • 521 B
TypeScript
export declare enum AppType {
application = "application",
library = "library"
}
export type ProjectType = 'application' | 'library';
export interface PackageDependencies {
dependencies: DependencyEntries;
devDependencies: DependencyEntries;
}
export interface DependencyEntries {
[module: string]: string;
}
export declare const PROJECT_TYPE_DEPENDENCIES: {
[AppType: string]: PackageDependencies;
};
export declare const STYLE_PLUGIN_DEPENDENCIES: {
[style: string]: PackageDependencies;
};