Is there a way to set up path mapping for pure JavaScript imports? Currently, when we want to import npm packages in pure JS without using webpack, the syntax is different. Instead of just using
import package from 'package-name'
, we have to use import package from '/node_modules/package-name.js'
. Is there a more efficient way to handle this?