Dynamically import a module with helpful error messages in case the import fails.
npm install @lvce-editor/import-script
import { importScript } from '@lvce-editor/importScript'
const otherFunction = () => {
throw new Error(`oops`)
}
const module = await import('./not-found.js')
//
//