feat(config): cli.additionalPathsToClean to clean other paths with 'ns clean' (#9808)

This commit is contained in:
Adam Bird
2022-03-04 22:39:22 -05:00
committed by GitHub
parent ab4e47a1c1
commit 3ec8c42971

View File

@@ -100,6 +100,11 @@ interface IConfigCLI {
* Defaults to the CLI set package manager, or `npm` if not set globally
*/
packageManager: 'yarn' | 'pnpm' | 'npm';
/**
* Optional files or paths to clean when running the `clean` command
*/
additionalPathsToClean?: string[];
}
interface IConfigHook {