[READ-ONLY] Mirror of https://github.com/FoxxMD/logging. A typed, opinionated, batteries-included, Pino-based logging solution for backend TS/JS projects foxxmd.github.io/logging
child-logger logging logging-library nodejs pinojs typescript-library
0

Configure Feed

Select the types of activity you want to include in your feed.

chore: Add example project launch profile

FoxxMD (Sep 3, 2025, 3:32 PM UTC) 71847df3 5147232b

+24
+24
.vscode/launch.json
··· 1 + { 2 + "version": "0.2.0", 3 + "configurations": [ 4 + { 5 + "name": "Example", 6 + "type": "node", 7 + "request": "launch", 8 + // Debug app in VSCode 9 + "program": "${workspaceFolder}/example/kitchenSink.ts", 10 + "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/tsx", 11 + "console": "integratedTerminal", 12 + "envFile": "${workspaceFolder}/.env", 13 + // "env": { 14 + // "CONFIG_DIR": "./not-real" 15 + // }, 16 + "internalConsoleOptions": "neverOpen", 17 + "skipFiles": [ 18 + "<node_internals>/**", 19 + // Ignore all dependencies (optional) 20 + "${workspaceFolder}/node_modules/**", 21 + ], 22 + }, 23 + ] 24 + }