6
7

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.

WebStorm 10でTypeScript 1.5を使う方法

Last updated at Posted at 2015-08-20

WebStormでは、TypeScriptのコンパイラーが内蔵されているため、WebStormさえインストールすればTypeScriptが使えるようになります。
ですが、WebStorm 10におけるデフォルトのコンパイラーはTypeScript 1.4です。TypeScript 1.5を使う場合は、以下のようにして設定します

必要ファイルをダウンロード

https://github.com/Microsoft/TypeScript/tree/master/lib より、typescriptServices.js、lib.d.ts、lib.es6.d.tsをダウンロードして任意の場所にフォルダを作成し、保存しておきます。

WebStorm側の設定

[WebStorm]→[Preferences]→[Languages & Frameworks]→[TypeScript]を選択し、TypeScriptの設定画面を開きます。[Enable TypeSCript Compiler]にチェックを入れ、TypeScriptのコードが自動でコンパイルされるようにしておきます。
スクリーンショット 2015-08-19 19.39.15.png

[Compiler version]の箇所で、[Edit]を選択し、コンパイラーの設定画面から[Custom directory]にチェックを入れ、先ほどダウンロードしたファイルが含まれるフォルダを指定します。
スクリーンショット 2015-08-19 19.39.30.png

[OK]を押して設定画面に戻り、[apply]を押すとすると設定終了です。以上でWebStormでTypeScript 1.5が使えるようになります。

参考: Transpiling TypeScript to JavaScript

6
7
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
6
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?