簡介:項目遷移到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" } ]