码迷,mamicode.com
首页 > 其他好文 > 详细

VSCode Node cannot launch program setting the 'outFiles' attribute might help

时间:2020-06-12 10:39:40      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:ati   简介   span   bsp   百度   vsc   overflow   关系   cannot   

简介:项目迁移到GitLab 后不能调试,各种百度谷歌 stackoverflow git  vscode issue  无果, N天后解决 明显和outFiles没关系

 

解决办法:  add configuration 出现 "type": "pwa-node"

 "version": "0.2.0",
    "configurations": [
        {
            "type": "node",
            "request": "launch",
            "name": "Launch Program",
            "skipFiles": [
                "<node_internals>/**"
            ],
            "program": "${workspaceFolder}\\bin\\www"
        },
        {
            "name": "Launch pwa-node",
            "program": "${workspaceFolder}/bin/www",
            "request": "launch",
            "skipFiles": [
                "<node_internals>/**"
            ],
            "type": "pwa-node"
        }
    ]

 

VSCode Node cannot launch program setting the 'outFiles' attribute might help

标签:ati   简介   span   bsp   百度   vsc   overflow   关系   cannot   

原文地址:https://www.cnblogs.com/xdot/p/13097894.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!