AutoBE
    Preparing search index...

    Interface IAutoBeDebugRuntimeSetupDiagnostic

    Parsed compiler diagnostic emitted while preparing a runtime workspace.

    interface IAutoBeDebugRuntimeSetupDiagnostic {
        code: string;
        column: number;
        file: string;
        line: number;
        message: string;
    }
    Index

    Properties

    code: string

    Compiler diagnostic code, such as TS1109.

    column: number

    One-based source column.

    file: string

    Source file path reported by the compiler.

    line: number

    One-based source line.

    message: string

    Compiler diagnostic message.