Home > @rushstack/package-extractor > IExtractorProjectConfiguration
IExtractorProjectConfiguration interface
The extractor configuration for individual projects.
Signature:
export interface IExtractorProjectConfiguration
Properties
Property | Modifiers | Type | Description |
|---|---|---|---|
string[] | (Optional) The names of additional dependencies to include when extracting this project. | ||
string[] | (Optional) The names of additional projects to include when extracting this project. | ||
string[] | (Optional) The names of additional dependencies to exclude when extracting this project. | ||
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. | ||
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. | ||
string | The absolute path to the project. | ||
string | The name of the project. |