@seawingai/winglog
Version:
A powerful TypeScript/JavaScript logging library built on top of Pino for structured logging with enhanced features
26 lines (25 loc) • 732 B
JSON
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Debug",
"program": "${workspaceFolder}/node_modules/jest/bin/jest.js",
"args": [
"--runInBand",
"--testPathPattern=*.spec.ts",
"--testTimeout=9999999"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"cwd": "${workspaceFolder}",
"runtimeArgs": [
"--inspect-brk"
],
"smartStep": true,
"outFiles": ["${workspaceFolder}/dist/**/*.js"], // If you're compiling TS to dist/
"skipFiles": ["<node_internals>/**"]
}
]
}