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

    Interface SettingsScope

    Which resource and language a setting is read for.

    VS Code resolves a different effective value per resource and per language, so there is no single "current" value for an application.

    interface SettingsScope {
        languageId?: string;
        resource?: ResourceUri;
    }
    Index
    languageId?: string

    Language id, selecting [language] overrides.

    resource?: ResourceUri

    Resource the value applies to. Selects the workspace folder.