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