launch.json
1 { 2 // Use IntelliSense to learn about possible attributes. 3 // Hover to view descriptions of existing attributes. 4 // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 5 "version": "0.2.0", 6 "configurations": [ 7 { 8 "name": "Debug", 9 "request": "launch", 10 "type": "chrome", 11 "preLaunchTask": "start", 12 "runtimeExecutable": "/Applications/Brave Browser.app/Contents/MacOS/Brave Browser", 13 // "postDebugTask": "stop", 14 "url": "http://localhost:10000", 15 "webRoot": "${workspaceFolder}" 16 }, 17 { 18 "name": "Debug File", 19 "request": "launch", 20 "console": "integratedTerminal", 21 "type": "node", 22 "program": "${file}", 23 "skipFiles": [ 24 "<node_internals>/**", 25 "${workspaceFolder}/node_modules/**", 26 ] 27 }, { 28 "name": "Debug Test File", 29 "request": "launch", 30 "console": "integratedTerminal", 31 "type": "node", 32 "runtimeArgs": [ "--test" ], 33 "program": "${file}", 34 "skipFiles": [ 35 "<node_internals>/**", 36 "${workspaceFolder}/node_modules/**", 37 ] 38 }, 39 ] 40 }