[READ-ONLY] Mirror of https://github.com/danielroe/errx. Zero dependency library to capture and parse stack traces in Node, Bun, Deno and more.
error stack-trace
0

Configure Feed

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

errx / tsconfig.json
588 B 29 lines
1{ 2 "compilerOptions": { 3 "target": "es2022", 4 "lib": [ 5 "es2022" 6 ], 7 "moduleDetection": "force", 8 "module": "preserve", 9 "resolveJsonModule": true, 10 "types": [ 11 "node" 12 ], 13 "strict": true, 14 "noImplicitOverride": true, 15 "noUncheckedIndexedAccess": true, 16 "declaration": true, 17 "noEmit": true, 18 "esModuleInterop": true, 19 "forceConsistentCasingInFileNames": true, 20 "isolatedDeclarations": true, 21 "isolatedModules": true, 22 "verbatimModuleSyntax": true, 23 "skipLibCheck": true 24 }, 25 "include": [ 26 "src", 27 "test" 28 ] 29}