[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: Update mocha settings and add vscode/devcontainer config

FoxxMD (Sep 3, 2025, 2:46 PM UTC) 8283d2f1 1d1442fd

+36
+1
.mocharc.json
··· 2 2 "reporter": "dot", 3 3 "extension": "ts", 4 4 "import": "tsx/esm", 5 + "spec": "./tests/**/*.test.ts", 5 6 "exit": true 6 7 }
+26
.devcontainer/devcontainer.json
··· 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 + }
+9
.vscode/settings.json
··· 1 + { 2 + "mochaExplorer.require": "tsx/esm", 3 + "mochaExplorer.timeout": 1200000, 4 + "mochaExplorer.exit": true, 5 + "files.exclude": { 6 + ".git": true, 7 + "**/.git": false 8 + } 9 + }