Home > @rushstack/package-extractor > IExtractorProjectConfiguration
IExtractorProjectConfiguration interface
The extractor configuration for individual projects.
Signature:
export interface IExtractorProjectConfiguration
Properties
Property | Modifiers | Type | Description |
---|---|---|---|
additionalDependenciesToInclude? | string[] | (Optional) The names of additional dependencies to include when extracting this project. | |
additionalProjectsToInclude? | string[] | (Optional) The names of additional projects to include when extracting this project. | |
dependenciesToExclude? | string[] | (Optional) The names of additional dependencies to exclude when extracting this project. | |
patternsToExclude? | string[] | (Optional) A list of glob patterns to exclude when extracting this project. If a path is matched by both "patternsToInclude" and "patternsToExclude", the path will be excluded. If undefined, no paths will be excluded. | |
patternsToInclude? | string[] | (Optional) A list of glob patterns to include when extracting this project. If a path is matched by both "patternsToInclude" and "patternsToExclude", the path will be excluded. If undefined, all paths will be included. | |
projectFolder | string | The absolute path to the project. | |
projectName | string | The name of the project. |