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

Add with-local-tmp-dir typings

FoxxMD (Mar 1, 2024, 3:32 PM EST) dae63494 33335a8c

+16 -2
+10
tests/types/with-local-tmp-dir.d.ts
··· 1 + declare module 'with-local-tmp-dir' { 2 + 3 + interface withLocalTmpDirOptions { 4 + unsafeCleanup?: boolean 5 + dir?: string 6 + prefix?: string 7 + } 8 + function withLocalTmpDirFunc(func: () => Promise<void>, args?: withLocalTmpDirOptions): Promise<string> 9 + export default withLocalTmpDirFunc 10 + }
+6 -2
tsconfig.json
··· 12 12 "allowSyntheticDefaultImports": true, 13 13 "useDefineForClassFields": true, 14 14 "isolatedModules": true, 15 - "noEmit": true 15 + "noEmit": true, 16 + "typeRoots": [ 17 + "tests/types" 18 + ] 16 19 }, 17 20 "ts-node": { 18 21 "esm": true 19 22 }, 20 23 "include": [ 21 - "src/**/*" 24 + "src/**/*", 25 + "tests/**/*.ts" 22 26 ], 23 27 "exclude": [ 24 28 "node_modules"