VS代码调试控制台不工作

时间:2017-12-01 11:47:31

标签: typescript typescript2.0

我已经安装了VS Code 1.9.1版本。我正在调试typescript文件但是当我点击启动调试按钮时我总是无法做到这一点我收到此消息:无法启动程序'c:\ xampp \ htdocs \ typescriptproj。 vscode \ launch.json';设置'outFiles'属性可能会有所帮助。 如何解决这个问题。

我的文件夹结构:

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": []
        }
    ]
}

1 个答案:

答案 0 :(得分:0)

你应该添加:

"outFiles": [
            "${workspaceRoot}/**/*.js"
        ],

VS-code运行js代码,而不是ts代码。因此,您应该指定VS代码应该在哪里查找js代码。