Provide eslint server with resolve-plugins-relative-to option

Hi,
I started replacing efm with the “native” eslint lsp.
I am using a custom eslint config that holds the plugin.
In normal eslint there is a --resolve-plugins-relative-to option to do so.
Is there a similar option for the eslint lsp?
Thank for any Help

I believe you can configure this using settings.options, since the options described here should get passed to the server:

require("lspconfig")["eslint"].setup({
    settings = {
        options = {
            resolvePluginsRelativeTo = "../",
        },
    },
})