Member Junction
    Preparing search index...

    A single diagnostic check result, produced by preflight or doctor checks.

    • PreflightPhase — produces checks for Node version, npm, disk space, ports, SQL connectivity, OS, and write permissions.
    • CodeGenPhase.RunKnownIssueChecks — produces checks for known source-level issues.
    interface DiagnosticCheck {
        Message: string;
        Name: string;
        Status: DiagnosticStatus;
        SuggestedFix?: string;
    }
    Index

    Properties

    Message: string

    Human-readable description of the check result.

    Name: string

    Short label for the check (e.g., "Node.js version", "Disk space").

    Outcome severity of this check.

    SuggestedFix?: string

    Actionable remediation step, present only for 'fail' and 'warn' statuses.