@nx-plus/vue
Version:
Vue plugin for Nx
23 lines (22 loc) • 530 B
TypeScript
export interface LibraryExecutorSchema {
dest: string;
clean: boolean;
report: boolean;
reportJson: boolean;
skipPlugins?: string;
watch: boolean;
entry: string;
tsConfig: string;
inlineVue: boolean;
css: {
// eslint-disable-next-line @typescript-eslint/ban-types
extract: boolean | object;
sourceMap: boolean;
// eslint-disable-next-line @typescript-eslint/ban-types
loaderOptions: object;
};
formats: string;
name?: string;
filename?: string;
transpileDependencies: string[];
}