Theia API Documentation v1.75.0
    Preparing search index...

    Every resolved path here is in the filesystem's native form and can be handed to a spawn as is. Containment is checked in Theia's Path form internally, but that form never leaves this service: on Windows it renders a drive path as /c:/…, which no spawn accepts.

    interface ResolvedStdioServer {
        args?: string[];
        command: string;
        cwd: string;
        env?: Record<string, string>;
        kind: "stdio";
        name: string;
    }
    Index

    Properties

    args?: string[]
    command: string

    Bare executable name kept verbatim, or a ./-relative path resolved against the plugin root.

    cwd: string

    Always set: cwd defaults to the plugin root when the entry omits it.

    env?: Record<string, string>
    kind: "stdio"
    name: string