2017-02-01 9 views

答えて

0

だけで簡単に先端のVisual Studioのコードを使用しています

{ 
    "version": "0.1.0", 
    "command": "tsc", 
    "isShellCommand": true, 
    "args": ["-p", "."], 
    "showOutput": "silent", 
    "problemMatcher": "$tsc", 
    "compileOnSave": true, 
    "buildOnSave": true, 
    "compilerOptions": { 
     "module": "commonjs", 
     "removeComments": true, 
     "noEmitHelpers": false, 
     "target": "es5", 
     "noResolve": true, 
     "experimentalDecorators": true 
    }, 
    "exclude": [ 
     "node_modules", 
     "typings" 
    ] 
} 

:それは追跡するように、活字体のログを有効にすることもできます。ここ

は私tsconfig.jsonがどのように見えるかですVisual StudioコードがTypeScript言語機能を使用するために使用するTypeScriptサービスのエラー。 Windowsでは、 "TSS_LOG"環境変数を "-level verbose"に設定する必要があります。これはLinux上で似ていると思います。その後、ログは何がうまくいかなかったかのヒントを与えるかもしれません。 tsconfig.jsonのエントリが新しいバージョンのTSサービスに問題を引き起こした例がいくつかありました。

関連する問題