Angularjs VSCode:Can';t在mac OSX上的调试器中启动节点javascript项目

Angularjs VSCode:Can';t在mac OSX上的调试器中启动节点javascript项目,angularjs,node.js,macos,debugging,visual-studio-code,Angularjs,Node.js,Macos,Debugging,Visual Studio Code,尝试从VSCode debug启动angular phonecat教程项目时,出现以下错误 程序“/Users/xxxx/src/node/angular phonecat/8000”不存在 该项目被克隆如下 git克隆--深度=14 下面是生成的配置 { "version": "0.1.0", // List of configurations. Add new configurations or edit existing ones. "configurati

尝试从VSCode debug启动angular phonecat教程项目时,出现以下错误 程序“/Users/xxxx/src/node/angular phonecat/8000”不存在

该项目被克隆如下 git克隆--深度=14

下面是生成的配置

    {
    "version": "0.1.0",
    // List of configurations. Add new configurations or edit existing ones.
    "configurations": [
        {
            // Name of configuration; appears in the launch configuration drop down menu.
            "name": "Launch 8000",
            // Type of configuration.
            "type": "node",
            // Workspace relative or absolute path to the program.
            "program": "8000",
            // Automatically stop program after launch.
            "stopOnEntry": false,
            // Command line arguments passed to the program.
            "args": [],
            // Workspace relative or absolute path to the working directory of the program being debugged. Default is the current workspace.
            "cwd": ".",
            // Workspace relative or absolute path to the runtime executable to be used. Default is the runtime executable on the PATH.
            "runtimeExecutable": null,
            // Optional arguments passed to the runtime executable.
            "runtimeArgs": ["--nolazy"],
            // Environment variables passed to the program.
            "env": {
                "NODE_ENV": "development"
            },
            // Use JavaScript source maps (if they exist).
            "sourceMaps": false,
            // If JavaScript source maps are enabled, the generated code is expected in this directory.
            "outDir": null
        },
        {
            "name": "Attach",
            "type": "node",
            // TCP/IP address. Default is "localhost".
            "address": "localhost",
            // Port to attach to.
            "port": 5858,
            "sourceMaps": false
        }
    ]
}
package.json如下所示

{
  "version": "0.0.0",
  "private": true,
  "name": "angular-phonecat",
  "description": "A tutorial application for AngularJS",
  "repository": "https://github.com/angular/angular-phonecat",
  "license": "MIT",
  "devDependencies": {
    "karma": "^0.12.16",
    "karma-chrome-launcher": "^0.1.4",
    "karma-firefox-launcher": "^0.1.3",
    "karma-jasmine": "~0.1.0",
    "protractor": "^2.1.0",
    "http-server": "^0.6.1",
    "tmp": "0.0.23",
    "bower": "^1.3.1",
    "shelljs": "^0.2.6"
  },
  "scripts": {
    "postinstall": "bower install",

    "prestart": "npm install",
    "start": "http-server -a 0.0.0.0 -p 8000",

    "pretest": "npm install",
    "test": "node node_modules/karma/bin/karma start test/karma.conf.js",
    "test-single-run": "node node_modules/karma/bin/karma start test/karma.conf.js  --single-run",

    "preupdate-webdriver": "npm install",
    "update-webdriver": "webdriver-manager update",

    "preprotractor": "npm run update-webdriver",
    "protractor": "protractor test/protractor-conf.js",

    "update-index-async": "node -e \"require('shelljs/global'); sed('-i', /\\/\\/@@NG_LOADER_START@@[\\s\\S]*\\/\\/@@NG_LOADER_END@@/, '//@@NG_LOADER_START@@\\n' + cat('bower_components/angular-loader/angular-loader.min.js') + '\\n//@@NG_LOADER_END@@', 'app/index-async.html');\""
  }
}
在使用“LaunchLocalHostwithSourceMaps”调试选项之前,需要从控制台运行“NPMStart”

配置将类似于 { “名称”:“使用sourcemaps启动本地主机”, “类型”:“铬”, “请求”:“启动”, “url”:“, “源地图”:正确, webRoot:“${workspaceRoot}” }

顺便说一句,我使用的是版本0.2.0 launch.json