config-rocket
    Preparing search index...

    Interface FileOutputOptions

    interface FileOutputOptions {
        hookable?: Hookable<FileOutputHooks, string>;
        mergeContent?: boolean | "deep";
    }
    Index

    Properties

    hookable?: Hookable<FileOutputHooks, string>

    A hookable instance to hook into the file output process.

    mergeContent?: boolean | "deep"

    Control existing file content merging policy.

    Options:

    • 'deep': perform deep merge supported files only (json, yaml).
    • true: concatenate data of all files (json are still deep-merged).