ktvmanager/.vscode/launch.json

33 lines
972 B
JSON
Raw Normal View History

2021-02-04 16:57:45 +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": [
2021-02-06 15:07:01 +00:00
{
"name": "React",
"type": "chrome",
"request": "launch",
"url": "http://localhost:3000",
"webRoot": "${workspaceRoot}/react-backend/client/src"
},
2021-02-04 16:57:45 +00:00
{
"type": "node",
"request": "launch",
2021-02-06 11:19:30 +00:00
"name": "Server",
2021-02-04 16:57:45 +00:00
"skipFiles": [
"<node_internals>/**"
],
2021-02-05 10:27:17 +00:00
"program": "${workspaceFolder}/app.js"
2021-02-06 11:19:30 +00:00
},
{
"type": "node",
"request": "launch",
"name": "Checker",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/checker.js"
2021-02-04 16:57:45 +00:00
}
]
}