All checks were successful
Build / build (22) (push) Successful in 34s
Build / build (18) (push) Successful in 54s
Build / build (20) (push) Successful in 1m23s
Build / build (20) (pull_request) Successful in 35s
Build / build (18) (pull_request) Successful in 55s
Build / build (22) (pull_request) Successful in 1m18s
20 lines
723 B
JSON
20 lines
723 B
JSON
// 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": "Debug and Watch",
|
|
"runtimeArgs": ["-r", "tsconfig-paths/register", "-r", "ts-node/register", "--watch-path", "src"],
|
|
"args": ["${workspaceFolder}/src/index.ts"],
|
|
"console": "integratedTerminal"
|
|
}
|
|
]
|
|
}
|
|
|
|
//can use "console": "internalConsole" for VS Code's Debug Console. For that, forceConsole in logger.ts is needed to be true
|
|
//"internalConsoleOptions": "openOnSessionStart" can be useful then
|