6
3

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.

【React】クローンしたコードでのエラー

Posted at

AWS codecommitからクローンしたコードで
モジュール 'react' またはそれに対応する型宣言が見つかりません。ts(2307)と出力される

  • 原因
    node_modulesがフォルダ内に存在しないため
    pushする際、node_modulesは除外するように設定しているため、クローンした際含まれていないことになる

  • 解決策
    npm installを実行し、node_modulesを追加する

この後

 <div className="App">
      <header className="App-header">
        <img src={logo} className="App-logo" alt="logo" />
........

に赤い波線がでて、モジュール 'reactまたはそれに対応する型宣言が見つかりませんと問題が出力された場合

image.png
赤〇のところをクリックして、バージョンの選択node_modules\typescript\libを選択することでエラーは出力されなくなった。

6
3
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
6
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?