我試圖調試使用VS代碼中無服務器框架開發的無服務器應用程序。我跟着this文章。無法在Visual Studio中調試無服務器應用程序代碼
但是當我試圖調試代碼時,我收到了VS代碼的錯誤,如下所示。
無法啓動程序'g:\ Projects \ Serverless1 \ node_modules.bin \ sls';設置'outDir或outFiles'屬性可能會有所幫助。
SLS命令文件已存在的文件夾中,並以下是launch.json文件設置
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"protocol": "inspector",
"name": "run hello function",
"program": "${workspaceRoot}\\node_modules\\.bin\\sls",
"args": [
"invoke",
"local",
"-f",
"hello",
"--data",
"{}"
]
}
]
請幫我解決這個問題。
面對完全一樣的問題。它在控制檯上工作,但不通過調試配置。如果您找到解決方案,請讓我知道。 –