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

    Variable CORE_SCHEMAConst

    CORE_SCHEMA: Schema = ...

    The default schema for the loaders. Note, CORE_SCHEMA comes without the !!merge tag. You can easily enable it if needed.

    Enable mergeTag:

    import { load, CORE_SCHEMA, mergeTag } from 'js-yaml'

    try {
    load(data, { schema: CORE_SCHEMA.withTags(mergeTag) })
    } catch (e) {
    console.error(e)
    }