UNPKG

@storm-software/workspace-tools

Version:

Tools for managing a Storm workspace, including various Nx generators and executors for common development tasks.

61 lines (52 loc) 799 B
// Generated by @storm-software/untyped // Do not edit this file directly export interface CleanPackageExecutorSchema { /** * Output Path * * The path to the output * * @default "dist/{projectRoot}" */ outputPath?: string, /** * Package JSON Path * * The path to the package.json that will be modified * * @default "{outputPath}/package.json" * * @format path */ packageJsonPath?: string, /** * Ignored Files * * The files to ignore * */ ignoredFiles?: string, /** * Fields * * The fields to include * */ fields?: string, /** * Clean Read Me * * Clean the read me * * @default true */ cleanReadMe?: boolean, /** * Clean Comments * * Clean the comments * * @default true */ cleanComments?: boolean, }