How to config NVim CoC.tsserver to get detailed ES6-imports?

I have a problem with NVim editing Babylon ES6 code. When I press ctrl+Space on the keyword Vector3 from my Typescript code, I get import-suggestion that adds a line like this:

import { Vector3 } from "@babylonjs/core";

That’s almost correct but I need an import that has more details for Vector3, that VSCode adds without any problem, it looks like this:

import { Vector3 } from "@babylonjs/core/Maths/math.vector";

Does anyone know what’s the setting should I use to get that more-detailed import?

Suddenly I’ve solved it. You just need to use CodeActions (CoC builtin feature) and then you’ll see all the import options. Awesome :smiley: