I have tried to debug serverless application developed using serverless framework in VS code. I have followed this article.
But when I trying to debug the code I\'m
To get debugging to work with TypeScript I needed to add outFiles set to the folder where my compiled code goes.
outFiles
"outFiles": [ "${workspaceRoot}/dist/**/*.js" ]
I haven't tried to debug straight JS but I would assume it's something like this.
"outFiles": [ "${workspaceRoot}/**/*.js" ]