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】環境構築

Posted at

Node.jsのインストール

上記のページからNode.jsをインストールする。

新規ディレクトリを作成して以下コマンドを実行する。

ターミナル
$ npm init -y

TypeScriptのインストール

以下のコマンドを実行してtypescriptをインストールする

ターミナル
$ npm install --save-dev typescript 

ts-nodeのインストール

以下のコマンドを実行してts-nodeをインストールする

ターミナル
$ npm install --save-dev ts-node

以降以下のコマンドを実行することでコンパイルと実行をすることができる。

ターミナル
$ npx ts-node ファイルパス

ts-node-devのインストール

以下のコマンドを実行してts-nodeをインストールする。

ターミナル
$ npm install --save-dev ts-node-dev

以降以下のコマンドを実行することでファイルを編集して保存するたびに.tsファイルのコンパイルと実行ができるようになる。

ターミナル
npx ts-node-dev --respawn ファイルパス
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?