@kkdev92/vscode-ext-kit - v4.1.1
    Preparing search index...

    Interface PreflightProblem

    One thing preflight found wrong, as data.

    code is stable and meant for a program; message says the same thing to a person. subject names what the problem is about — a module, a command, a token, a storage key — and moduleId the module that declared it, when one did. path is the dependency chain, for a cycle or a captive dependency.

    The codes compileApplication reports are listed on that function; the ones runtimePreflight reports are listed on RuntimeIssue.

    interface PreflightProblem {
        code: string;
        message: string;
        moduleId?: string;
        path?: readonly string[];
        subject?: string;
    }
    Index
    code: string
    message: string
    moduleId?: string
    path?: readonly string[]
    subject?: string