概要
VSCodeにreactを使用するときの型定義ファイルを適用したときのメモ。
動作環境
- windows10
- node.js 6.9.2
- typescript 2.1.4
操作はvscodeで開いているプロジェクトのルートで行っている。
typingsのインストール
npm install -g typings
reduxの型定義ファイルのインストール
typings install dt~redux --global
react, react-dom, react-reduxの型定義ファイルのインストール
typings install dt~react dt~react-dom dt~react-redux
VSCodeを再起動
参考
TypeScript2.0での型定義ファイルの管理 TypeScript VSCode Node.js
VS CodeでTypecript 2.0 + D3.js v4を補完できるようにする(暫定対処)