5
1

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.

tsxでインターフェイス 'JSX.IntrinsicElements' が存在しない

Posted at

はじめに

この記事は2022年8月にまとめていた「細かいつまずいたことをメモしておく(8月編)をそれぞれ投稿した内容になります
解決方法が最新でない可能性もありますのでご了承ください

問題

App.tsxをVSCodeで開くと以下のエラーがでた

image.png

エラーの内容は以下の通り

インターフェイス 'JSX.IntrinsicElements' が存在しないため、暗黙的に JSX 要素の型は 'any' になります。ts(7026)
モジュール 'react/jsx-runtime' またはそれに対応する型宣言が見つかりません。ts(2307)
モジュール 'react' またはそれに対応する型宣言が見つかりません。ts(2307)

別のディレクトリ(プロジェクト)にあるApp.tsxは問題なかった

解決方法

原因はnode_modulesがなかったことでした
クローンしたのでyarn installする必要がありました

5
1
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
5
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?