a minute ago

TS2307: Cannot find module ... or its corresponding type declarations.


事象

新しいパッケージを入れたとき、typescriptを使っているとたまにこんなエラーが出る

TS2307: Cannot find module ... or its corresponding type declarations.

対策

プロジェクト直下にlib/shims.d.tsとかを作ってdeclare moduleする。以下はvuejs-datepickerの例。

declare module 'vuejs-datepicker'
declare module 'vuejs-datepicker/dist/locale'

Related Articles