MCP Server Framework - v1.0.0
    Preparing search index...

    Interface ConfigFileResult

    Result of loading and parsing a config file.

    Contains the overrides to apply to FrameworkEnvConfig and metadata about the source file (for logging after logger initialization).

    interface ConfigFileResult {
        format: ConfigFileFormat;
        overrides: Partial<FrameworkEnvConfig>;
        sourcePath: string;
    }
    Index

    Properties

    Format of the loaded file

    overrides: Partial<FrameworkEnvConfig>

    Partial overrides to merge into the framework config

    sourcePath: string

    Absolute path to the config file that was loaded