igcv3 - v1.1.0
    Preparing search index...

    Interface OutputPathOptions

    Options for resolving output path.

    interface OutputPathOptions {
        out?: string;
        defaultDir?: string;
        defaultFilename: string;
        extension?: string;
        createDir?: boolean;
        allowedDirs: string[];
    }
    Index

    Properties

    out?: string

    The --out value from CLI (can be directory or full file path)

    defaultDir?: string

    Default directory if --out is not provided

    defaultFilename: string

    Default filename (with extension) if only directory is provided

    extension?: string

    File extension to ensure (e.g., '.pem', '.csr')

    createDir?: boolean

    Create directory if it doesn't exist

    allowedDirs: string[]

    Allowed output directories (strict allowlist)