[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.

logging / .devcontainer / devcontainer.json
881 B 26 lines
1// For format details, see https://aka.ms/devcontainer.json. For config options, see the 2// README at: https://github.com/devcontainers/templates/tree/main/src/javascript-node 3{ 4 "name": "Node.js", 5 // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile 6 "image": "mcr.microsoft.com/devcontainers/javascript-node:1-18-bookworm", 7 8 // Features to add to the dev container. More info: https://containers.dev/features. 9 // "features": {}, 10 11 // Use 'postCreateCommand' to run commands after the container is created. 12 13 // Configure tool-specific properties. 14 "customizations": { 15 "vscode": { 16 "extensions": [ 17 "hbenl.vscode-mocha-test-adapter", 18 "dbaeumer.vscode-eslint", 19 "TakumiI.markdowntable" 20 ] 21 } 22 } 23 24 // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. 25 // "remoteUser": "root" 26}