ws4kp-linhanced/.vscode/launch.json

46 lines
976 B
JSON
Raw Normal View History

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