LoginSignup
0
0

More than 1 year has passed since last update.

TypeScirptの環境設定

Last updated at Posted at 2022-03-30

## はじめに
TypeScirptの環境設定をしなければならなかったのでメモとして残します。

yarnとnpmでインストールする

ローカルの場合

npm install -D typescript
or
yarn add typescript --dev

npm install -D ts-node
or
yarn add ts-node --dev

npm install -D tslib @types/node
or
yarn add tslib @types/node --dev

グローバルの場合

npm install -g typescript
or
yarn global add typescript

npm install -g ts-node
or
yarn global add ts-node

npm install -g tslib @types/node
or
yarn global add tslib @types/node

https://www.npmjs.com/package/ts-node

参考になれば幸いです!

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