「Unexpected token ‘*’. import call ~」が出た時の対処方

エラー ツール・その他

Javascriptの実装中「SyntaxError: Unexpected token ‘*’. import call expects one or two arguments.」がでて、解決に時間がかかったので備忘録として残しておきます。

エラー内容と状況

SyntaxError: Unexpected token '*'. import call expects one or two arguments

フォルダ状況とエラー箇所

import * as Typing from "./modules/typing.js"; //エラー

フォルダ構成は上記の通り。typing.jsをindex.jsでimportしようとするとエラーが発生

解決方法

index.htmlのscript内に「type=”module”」を追加

<script type="module" src="./js/index.js" defer></script> //「type="module"」を追加

終わりに

早く公式ドキュメントを読む力を身につけていきたいですね。