spookvooper-api/.vscode/launch.json

21 lines
668 B
JSON
Raw Normal View History

2020-12-08 20:50:31 +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": [
{
"type": "node",
"request": "launch",
2020-12-15 05:41:13 +00:00
"name": "Launch Test File",
2020-12-08 20:50:31 +00:00
"skipFiles": [
"<node_internals>/**"
],
2020-12-15 05:41:13 +00:00
"program": "${workspaceFolder}\\dist\\test.js",
2020-12-08 20:50:31 +00:00
"preLaunchTask": "tsc: build - tsconfig.json",
"outFiles": [
"${workspaceFolder}/dist/**/*.js"
]
}
]
}