before the paths directly lead to file
import * as THREE from './build/three.module.js';
and this was letting the auto autocomplete work
now the import statements are updated to
import * as THREE from 'three';
and the path is only in the ‘index.html
’ file.
This works great
but
now auto complete is gone
anyway to bring it back ?