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

TypeScriptをVSCodeで使いたい

Posted at

※この記事は とりあえずTypeScriptが使える環境が欲しいけど何をしたらいいかわからない 人向けの記事です。

インストールするもの

1.node.js

まずはnode.jsのパッケージを install しましょう。
自分は最新版にしました。
その後パッケージを開きnode.jsをinstallします。

2.Typescript

コマンドプロンプトで[npm install -g typescript]と入力します。
(コマンドプロンプトは画面左下にある検索ボタンで[cm]と入力すると確認できます)


これで最低限必要なものは入れることができました。

VSCodeでTypeScriptをJavaScriptにコンパイル

VSCodeでプログラムを書いたらVSCode内にあるターミナルで[tsc ファイル名]と入力すると同じファイル名で拡張子が[.js]のファイルが作成されます。

警告
この時プログラムを[ctrl + s]で上書きしていない場合、意図したものにならない可能性があります。
必ず上書き保存してから[tsc]コマンドを使いましょう。

最後に

理解が浅い学習中の私が書いた記事です。
参考程度に読んでいただけると幸いです。

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