Rush StackShopBlogEvents
Skip to main content

Home > @rushstack/package-extractor > IExtractorDependencyConfiguration

IExtractorDependencyConfiguration interface

The extractor configuration for individual dependencies.

Signature:

export interface IExtractorDependencyConfiguration 

Properties

Property

Modifiers

Type

Description

dependencyName

string

The name of dependency

dependencyVersionRange

string

The semver version range of dependency

patternsToExclude?

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.

patternsToInclude?

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.