0
VSコード1.9.1 version.iをインストールしました。タイプスクリプトファイルをデバッグしていますが、開始ボタンをクリックしてもいつでも実行できませんでした。デバッグボタンこのメッセージが表示されます。 xampp \ htdocs \ typescriptproj.vscode \ launch.json '; 'outFiles'属性を設定すると役立ちます。 この問題を解決する方法。VSコードデバッグコンソールが動作しません
マイフォルダ構造:
typescriptproj->フォルダ名
-script.js
-script.ts
.vscode
-launch.json
-settings.josn ->empty
script.ts
//String
let valstring:string;
valstring="sankars";
console.log(valstring);
launch.json:
{
// Use IntelliSense to learn about possible Node.js debug attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${file}",
"cwd": "${workspaceRoot}",
"outFiles": []
},
{
"type": "node",
"request": "attach",
"name": "Attach to Process",
"port": 5858,
"outFiles": []
}
]
}
もう一度同じエラーが発生しています –