[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
1{
2 "compilerOptions": {
3 "module": "NodeNext",
4 "moduleResolution": "NodeNext",
5 "target": "ESNext",
6 "declaration": true,
7 "strict": false,
8 "esModuleInterop": true,
9 "skipLibCheck": true,
10 "sourceMap": true,
11 "forceConsistentCasingInFileNames": true,
12 "allowSyntheticDefaultImports": true,
13 "useDefineForClassFields": true,
14 "isolatedModules": true,
15 "noEmit": true
16 },
17 "ts-node": {
18 "esm": true
19 },
20 "include": [
21 "src/**/*",
22 "tests/**/*.ts"
23 ],
24 "exclude": [
25 "node_modules"
26 ]
27}