2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Could not find a declaration file for module の対処法が意外と簡単だった

Posted at

管理画面で「vue-quill-editor」というWYSIWYGエディタを導入したのですが、

Could not find a declaration file for module 'vue-quill-editor'

というエラーが出てビルドできなかったので、対処しました。

1. 型定義ファイルを用意する

型定義ファイルを格納する場所は、デフォルトだと「src/@types」らしいので、そのディレクトリに 「vue-quill-editor.d.ts」 というファイルを作成しました。

2. 「vue-quill-editor.d.ts」に型定義を書く

declare module 'vue-quill-editor'

・・・以上(笑

ライブラリの中を見て型定義を全部書かないといけないのかと思っていましたが、上記の一行だけ書けばとりあえずビルドエラーは回避できるみたいです。

何事もまずやってみることですね。

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?