Documentation
    Preparing search index...

    Interface PrettifyOptions

    interface PrettifyOptions {
        cwd?: string;
        dry?: boolean;
        logger?: Logger<unknown>;
        parser?: BuiltInParserName;
    }

    Hierarchy (View Summary)

    Index

    Properties

    cwd?: string

    Current working directory

    process.cwd()
    
    dry?: boolean

    Actual operations are turned off when dry is set to true.

    For example Post requests won't be made, filesystem operations won't write, but still send get requests and read from filesystem.

    false
    
    logger?: Logger<unknown>

    An optional Logger target.

    undefined
    
    parser?: BuiltInParserName

    Which prettier parser is used

    'babel'