I'm trying to import the 'threejs-meshline' package into my index.js file as a module. I installed it via npm, and it's in a 'node_modules' folder.
I'm trying to import it this way:
import {MeshLine, MeshLineMaterial, MeshLineRaycast} from 'threejs-meshline'
The console gives this error: "Module specifier does not start with "/", "./", or "../"."
Adding '../node_modules/' to the beginning doesn't work.