2017-10-06 6 views
-1

typescriptファイルを実行する際に問題があります。私は、typescriptファイルを実行するためにビジュアルスタジオコードを使用しています。私はビジュアルスタジオコードとタイプスクリプトをインストールして設定しました。しかし、私がtypescriptファイル(tsc filename.ts)を実行しようとすると、エラーが表示されます。助けてください!ビジュアルスタジオコードを使用したTypescriptファイルの実行

エラー:

PS D:\01_Hello> tsc app.ts 
tsc : The term 'tsc' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the 
spelling of the name, or if a path was included, verify that the path is correct and try again. 
At line:1 char:1 
+ tsc app.ts 
+ ~~~ 
    + CategoryInfo   : ObjectNotFound: (tsc:String) [], CommandNotFoundException 
    + FullyQualifiedErrorId : CommandNotFoundException 
+0

[tscは内部コマンドまたは外部コマンドとして認識されません](https://stackoverflow.com/questions/35369501/tsc-is-not-recognized-as-internal-or-external-command) –

答えて

0

Visual Studioのコードは、あなたがNPM経由でつかんできた活字体のバージョンで動作するように設計されています。だからここにあなたがする必要がある手順を実行npm install -g typescript

  • はそれがtsc -v
  • で働いチェック

  • ノードをインストール

    1. ...あるあなたは今の作業すべてを持っている必要があります。

    関連する問題