js-yaml - v5.3.0
    Preparing search index...

    Interface LoadOptions

    interface LoadOptions {
        schema?: Schema;
        json?: boolean;
        maxTotalMergeKeys?: number;
        maxAliases?: number;
        filename?: string;
        maxDepth?: number;
    }

    Hierarchy (View Summary)

    Index

    Schema to use.

    CORE_SCHEMA

    Enables compatibility with JSON.parse behavior. Duplicate keys in a mapping override values instead of throwing an error.

    false

    Maximum total number of keys processed by merge (<<) across one load call. Set to -1 to disable the limit.

    10000

    Maximum number of alias nodes (*ref) per document. Set to 0 to reject all aliases, or to -1 for no limit.

    -1

    File path used in error messages.

    null

    Maximum nesting depth for collections. Aliases are not taken into account.

    100