Ordis f5ae671b51
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
use integrated terminal instead debug console
2025-02-07 18:43:41 +01:00

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