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

TypeScript:覚えた知識を日々書き留める#2

Last updated at Posted at 2019-10-13

VSCodeでプロジェクトを作る際、tscコマンドがなかなか認識されず、苦労しました。
完全ではないですが、一応うまくいった方法があるのでメモです。

1.空フォルダを作る

2.ターミナルで以下のコマンドを入力する
 npm init

3.ターミナルで以下のコマンドを入力する
npm install --save -dev typescript

4.ターミナルで以下のコマンドを入力する
./node_modules/.bin/tsc.cmd --version

5.ターミナルで以下のコマンドを入力する
 ./node_modules/.bin/tsc --init

これで一応、バージョン確認やtscコマンドでのビルドができるようになりました。
なぜ、自分が作ったプロジェクトでは「tsc -v」等は認識してくれず毎回ディレクトリを書かなければいけないのかはまだわかっていません。今後の課題です。

0
0
2

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?