@nxext/stencil
Version:
Nx plugin for stenciljs
19 lines (18 loc) • 485 B
TypeScript
export declare enum AppType {
application = "application",
library = "library",
pwa = "pwa"
}
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;
};