@marianfoo/adt-ls - v0.4.1
    Preparing search index...

    Interface AdtLsDriverOptions

    interface AdtLsDriverOptions {
        clientInfo?: { name: string; version: string };
        dataDir?: string;
        extraArgs?: string[];
        extraEnv?: Record<string, string>;
        requestHandlers?: Record<string, ServerRequestHandler>;
    }
    Index

    Properties

    clientInfo?: { name: string; version: string }

    Client identity advertised in initialize (name is reused as the userAgentInfo).

    dataDir?: string

    Working/data dir for adt-ls (-data). Defaults to an isolated temp dir.

    extraArgs?: string[]

    Extra CLI/JVM args prepended ahead of adt-ls's own -data/--pipe — e.g. SNC/JCo flags (-Djco.middleware.snc_lib=…, -Djava.library.path=…) or -consoleLog.

    extraEnv?: Record<string, string>

    Extra env for the spawned JVM (e.g. JAVA_TOOL_OPTIONS truststore).

    requestHandlers?: Record<string, ServerRequestHandler>

    server→client request handlers, keyed by LSP method.