Member Junction
    Preparing search index...

    Interface LoadConfigResult<T>

    Result of configuration loading

    interface LoadConfigResult<T = Record<string, any>> {
        config: T;
        configFilePath?: string;
        hasUserConfig: boolean;
        overriddenKeys: string[];
    }

    Type Parameters

    • T = Record<string, any>
    Index

    Properties

    config: T

    Final merged configuration

    configFilePath?: string

    Path to user config file (undefined if using only defaults)

    hasUserConfig: boolean

    True if user config file was found and loaded

    overriddenKeys: string[]

    Keys that were overridden from defaults