I am getting this error while trying to import a library.
I got this library by the command: npm i queue
code how I import (javascript):
import Queue from "./node_modules/queue/index.js"
HTML: <script type="module" src="./gamescript.js"></script>
How can I fix this problem?

import Queue from "./node_modules/queue/index.js"->import { Queue } from "./node_modules/queue/index.js"importa cjs module.