CliSite/.vscode/launch.json

20 lines
612 B
JSON
Raw Permalink Normal View History

2022-06-11 19:57:41 +02: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": [
2022-06-11 20:49:24 +02:00
2022-06-11 19:57:41 +02:00
{
"type": "pwa-node",
"request": "launch",
2022-06-11 20:49:24 +02:00
//require compile typescript task
"preLaunchTask": "Compile TypeScript",
2022-06-11 19:57:41 +02:00
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/index.js"
}
]
}