DwightAI / .vscode /launch.json
sujoydev99's picture
...
579f597
raw
history blame contribute delete
634 Bytes
{
// 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 Server",
"program": "${workspaceFolder}/index.js",
"envFile": "${workspaceFolder}/.vscode/env",
"env": {},
"outputCapture": "std",
"runtimeExecutable": "/Users/sujoydev/.nvm/versions/node/v18.16.0/bin/node"
}
]
}