Last active
June 10, 2021 22:20
Revisions
-
fwang revised this gist
Jun 10, 2021 . 1 changed file with 6 additions and 4 deletions.There are no files selected for viewing
This file contains 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 charactersOriginal file line number Diff line number Diff line change @@ -5,8 +5,10 @@ "name": "Debug SST Start", "type": "node", "request": "launch", - "runtimeExecutable": "npm", - "runtimeArgs": ["start"], + "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/sst", + "runtimeArgs": ["start", "--increase-timeout"], + "console": "integratedTerminal", "skipFiles": ["<node_internals>/**"] }, @@ -18,10 +20,10 @@ "args": ["test", "--runInBand", "--no-cache", "--watchAll=false"], "cwd": "${workspaceRoot}", "protocol": "inspector", "console": "integratedTerminal", "internalConsoleOptions": "neverOpen", "env": { "CI": "true" }, "disableOptimisticBPs": true } ] } -
fwang created this gist
Jun 9, 2021 .There are no files selected for viewing
This file contains 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,27 @@ { "version": "0.2.0", "configurations": [ { "name": "Debug SST Start", "type": "node", "request": "launch", "runtimeExecutable": "npm", "runtimeArgs": ["start"], + "console": "integratedTerminal", "skipFiles": ["<node_internals>/**"] }, { "name": "Debug SST Tests", "type": "node", "request": "launch", "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/sst", "args": ["test", "--runInBand", "--no-cache", "--watchAll=false"], "cwd": "${workspaceRoot}", "protocol": "inspector", "console": "internalTerminal", "internalConsoleOptions": "neverOpen", "env": { "CI": "true" }, "disableOptimisticBPs": true } ] }