hestia/.vscode/launch.json

17 lines
509 B
JSON
Raw Permalink Normal View History

2022-12-20 20:17:38 +00:00
{
// 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 Program",
"skipFiles": [
"<node_internals>/**"
],
2023-01-22 02:33:52 +00:00
"program": "${workspaceFolder}/main.js"
2022-12-20 20:17:38 +00:00
}
]
}