Created
November 28, 2020 20:43
-
-
Save SamWSoftware/8f70176ecabe4b01b86ef5b5a905dffa to your computer and use it in GitHub Desktop.
VS Code Debugging Launch JSON
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// Use IntelliSense to learn about possible attributes. | |
// Hover to view descriptions of existing attributes. | |
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "node", | |
"request": "launch", | |
"name": "Launch Serverless Offline", | |
"program": "${workspaceRoot}/node_modules/serverless/bin/serverless", | |
"args": ["offline", "start", "--httpPort", "4000", "--noTimeout"], | |
"sourceMaps": true, | |
"runtimeArgs": ["--lazy"], | |
"outFiles": ["${workspaceRoot}/.webpack/**/*.js"], | |
"protocol": "inspector", | |
"runtimeExecutable": "node", | |
"env": { | |
"tableName": "player-points" | |
}, | |
"windows": { | |
"program": "${workspaceRoot}\\node_modules\\serverless\\bin\\serverless" | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment