Home > @rushstack/heft-config-file > InheritanceType
InheritanceType variable
This API is provided as a beta preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
The set of possible mechanisms for merging properties from parent configuration files. If a child configuration file sets a property value to null, that will always delete the value specified in the parent configuration file, regardless of the inheritance type.
Signature:
InheritanceType: {
readonly append: "append";
readonly merge: "merge";
readonly replace: "replace";
readonly custom: "custom";
}