Autocomplete for kibana types in kibana-plugins

I’m developing plugin for kibana and I’m feeling pain due to absent IntelliSense.

Does anyone know how to add to IntelliSense support of kibana types in vscode when I open my kibana plugin folder?

Or maybe anyone know how to configure IntelliSense to enable autocompletion of types from sibling folder for JS project?

My folder structure is:

/kibana
/kibana-extra/myplugin

I’m opening directly myplugin folder. I tried to add following jsconfig.json :

{
    "include": [
        "../../kibana/src/**/*"
    ],
    "exclude": [
        "../../kibana/src/**/__fixtures__/**/*"
    ]
}

But I have no success.