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?