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

typescript環境開発時のエラー(初心者向け)

Last updated at Posted at 2021-10-30

概要

備忘録がてら、Typescript を使った React 開発環境を構築する時に発生したエラーと対策をメモします。

手順

  1. プロジェクトを作るフォルダに移動する
  2. 下記コマンドを実行する
npx create-react-app . --tempalte typescript

エラー発生

上記の設定で`npm start``を実行すると、下記のエラーが発生

Could not find a declaration file for module ‘react’.

原因を確認すると、どうも React が Typescript で書かれていないため、型提供が必要とのこと。

下記コマンド実行することで解消しました。

yarn add -D @types/react

参考資料

こちらの記事を参考にしました。

1
1
1

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