Files
jack-red/.vscode/launch.json

21 lines
659 B
JSON
Raw Normal View History

2020-06-14 16:17:16 +05:30
{
// 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>/**"
],
"preLaunchTask": "tsc: build - tsconfig.json",
"program": "${workspaceFolder}/out/index.js",
"outFiles": [
"${workspaceFolder}/**/*.js"
]
}
]
}