Vue.js + TypeScriptでlodashをインストールしたのにビルド時に「Could not find a declaration file for module ‘lodash’」というエラーとなった
原因
npm install –save lodash
でインストールしただけだとTypeScriptで使用するodashの型情報が無かった。
プロジェクト配下のnode_modules/@types内にlodashが存在していなかった。
対処法
@types/lodashをインストールすればよい。npm install –save @types/lodash
を実行する。