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

    Interface ModuleRequirements

    What a module needs from the host to work at all.

    Checked at activation, before any Module binds, so a Module that cannot possibly function says so instead of failing later in a confusing place.

    interface ModuleRequirements {
        localFileSystem?: boolean;
        trust?: boolean;
        workspace?: boolean;
    }
    Index
    localFileSystem?: boolean

    Needs real file: paths, so a virtual workspace will not do.

    trust?: boolean

    Needs a trusted workspace.

    workspace?: boolean

    Needs at least one workspace folder open.