vlocode-project - v1.40.0-beta-4
    Preparing search index...

    Interface OutputOptions

    interface OutputOptions {
        append?: boolean;
        encoding?: BufferEncoding;
        overwrite?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    append?: boolean

    Append to the file instead of overwriting it when it already exists.

    encoding?: BufferEncoding

    Encoding to use when writing strings to a file

    overwrite?: boolean

    Overwrite the file when it already exists. If set to false, an exception is thrown when the file already exists. Otherwise the file is overwritten (default)

    true