Home > @rushstack/package-extractor > IExtractorDependencyConfiguration
IExtractorDependencyConfiguration interface
The extractor configuration for individual dependencies.
Signature:
export interface IExtractorDependencyConfiguration
Properties
Property | Modifiers | Type | Description |
|---|---|---|---|
string | The name of dependency | ||
string | The semver version range of dependency | ||
string[] | (Optional) A list of glob patterns to exclude when extracting this dependency. 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 dependency. If a path is matched by both "patternsToInclude" and "patternsToExclude", the path will be excluded. If undefined, all paths will be included. |