Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 987 Bytes

File metadata and controls

26 lines (17 loc) · 987 Bytes
hide_title true
custom_edit_url
pagination_prev
pagination_next

Home > @microsoft/rush-lib > PnpmOptionsConfiguration > strictPeerDependencies

PnpmOptionsConfiguration.strictPeerDependencies property

If true, then Rush will add the "--strict-peer-dependencies" option when invoking PNPM.

Signature:

readonly strictPeerDependencies: boolean;

Remarks

This causes "rush install" to fail if there are unsatisfied peer dependencies, which is an invalid state that can cause build failures or incompatible dependency versions. (For historical reasons, JavaScript package managers generally do not treat this invalid state as an error.)

The default value is false. (For now.)