AutoBE
    Preparing search index...

    Compilation failure with detailed diagnostic information and partial output.

    Represents cases where TypeScript compilation encountered errors or warnings that prevent successful code generation. This result provides comprehensive diagnostic information to enable AI agents to understand specific issues and implement targeted corrections through the iterative refinement process.

    interface IFailure {
        blocker?: IBlocker;
        diagnostics: IDiagnostic[];
        rootCategory?: RootCategory;
        type: "failure";
    }
    Index

    Properties

    blocker?: IBlocker

    First diagnostic selected as the user-facing compile blocker.

    diagnostics: IDiagnostic[]

    Detailed compilation diagnostics for error analysis and correction.

    Contains comprehensive information about compilation errors, warnings, and suggestions that occurred during the TypeScript compilation process. Each diagnostic includes file location, error category, diagnostic codes, and detailed messages that enable AI agents to understand and resolve specific compilation issues.

    rootCategory?: RootCategory

    Root category for the final blocker when the compiler diagnostics match a known AutoBE generation failure pattern.

    type: "failure"

    Discriminator indicating compilation failure.