【TS】TypeScript ~ 基本編 ~

■ はじめに

https://dk521123.hatenablog.com/entry/2020/12/21/180904

の続き。

TypeScript に関する知識を徐々にメモっておく。

目次

【1】tsconfig.json
 1)typeRoots

【1】tsconfig.json

1)typeRoots

* オリジナルの型定義ファイル(xxx.d.ts)を利用したい場合に使用

tsconfig.json

{
  "compilerOptions": {
       "typeRoots" : ["./typings"]
   }
}

参考文献
https://qiita.com/vsanna/items/1596f995ddefb6dc78e9
https://medium.com/@shumamizuno/tsconfig-json-typescript-880379dc1e4

関連記事

TypeScript ~ 入門編 ~
https://dk521123.hatenablog.com/entry/2020/12/21/180904
TypeScript ~ export / import ~
https://dk521123.hatenablog.com/entry/2022/03/23/233512
TypeScript ~ クラス / インターフェイス
https://dk521123.hatenablog.com/entry/2022/03/13/000000
TypeScript ~ 型エイリアス (Type Alias) ~
https://dk521123.hatenablog.com/entry/2022/04/02/000000
条件分岐
https://dk521123.hatenablog.com/entry/2022/03/12/000000
可変長引数
https://dk521123.hatenablog.com/entry/2016/02/08/111250
TypeScript ~ クラス / インターフェイス
https://dk521123.hatenablog.com/entry/2022/03/13/000000