Skip to content

Latest commit

 

History

History
102 lines (49 loc) · 1.41 KB

File metadata and controls

102 lines (49 loc) · 1.41 KB
hide_title true
custom_edit_url
pagination_prev
pagination_next

Home > @rushstack/node-core-library > IRealNodeModulePathResolverOptions

IRealNodeModulePathResolverOptions interface

Arguments used to create a function that resolves symlinked node_modules in a path

Signature:

export interface IRealNodeModulePathResolverOptions 

Properties

Property

Modifiers

Type

Description

fs?

Partial<Pick<typeof nodeFs, 'lstatSync' | 'readlinkSync'>>

(Optional)

ignoreMissingPaths?

boolean

(Optional) If set to true, the resolver will not throw if part of the path does not exist.

path?

Partial<Pick<typeof nodePath, 'isAbsolute' | 'join' | 'resolve' | 'sep'>>

(Optional)