ws4kp/.vscode/launch.json

48 lines
983 B
JSON
Raw Normal View History

2020-09-04 18:02:20 +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": [
{
"name": "Frontend",
"request": "launch",
2022-08-05 19:03:14 +00:00
"type": "chrome",
2020-09-04 18:02:20 +00:00
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}/server",
"skipFiles": [
"<node_internals>/**",
"**/*.min.js",
2020-09-30 03:25:28 +00:00
"**/vendor/**"
2022-08-05 19:03:14 +00:00
],
2020-09-04 18:02:20 +00:00
},
2020-09-25 20:11:19 +00:00
{
"name": "Data:stations",
"program": "${workspaceFolder}/datagenerators/stations.js",
"request": "launch",
"skipFiles": [
"<node_internals>/**"
],
"type": "pwa-node"
},
2020-09-04 18:02:20 +00:00
{
"type": "node",
"request": "launch",
"name": "Server",
"skipFiles": [
"<node_internals>/**",
],
"program": "${workspaceFolder}/index.js",
"outputCapture": "std",
}
2022-03-01 21:54:19 +00:00
],
"compounds": [
{
"name": "Compound",
2022-08-05 19:03:14 +00:00
"configurations": [
"Frontend",
"Server"
]
2022-03-01 21:54:19 +00:00
}
2020-09-04 18:02:20 +00:00
]
}