feat(config): add new option for pathsToClean

This commit is contained in:
Igor Randjelovic
2022-03-07 13:00:07 +01:00
parent cda898ea13
commit 08d5656899

View File

@ -102,7 +102,12 @@ interface IConfigCLI {
packageManager: 'yarn' | 'pnpm' | 'npm';
/**
* Optional files or paths to clean when running the `clean` command
* Optional - Override the files or paths to clean when running the `ns clean` command
*/
pathsToClean?: string[];
/**
* Optional - Additional files or paths to clean when running the `ns clean` command, the paths are appended to the default list of paths.
*/
additionalPathsToClean?: string[];
}