4
5

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 3 years have passed since last update.

TypescriptでReactの環境構築

Posted at

TypescriptでReactの環境構築

TypescriptでReactの環境構築をまとめたいと思います。

プロジェクトの作成

create-react-appコマンドを使って、プロジェクトを作成します。
TypeScriptを使用するのでオプションで--template typescriptを加えます。
react-typescript-app というプロジェクトを作成しました。

$ npx create-react-app react-typescript-app --template typescript
$ cd react-typescript-app
$ yarn start

無事動作することが確認できました!

TypeScriptの環境構築

TypeScriptの設定などは下記を見て設定します。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?