Skip to content

Commit

Permalink
chore: tsconfig for postcompile (doc)
Browse files Browse the repository at this point in the history
  • Loading branch information
mshanemc committed Apr 5, 2024
1 parent 08b0c74 commit bcdaf7f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion typedocExamples/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
"noEmit": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"esModuleInterop": true
"esModuleInterop": true,
"lib": ["ES2022"],
"module": "Node16",
"moduleResolution": "Node16",
"target": "ES2022"
}
}

3 comments on commit bcdaf7f

@svc-cli-bot
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Logger Benchmarks - ubuntu-latest

Benchmark suite Current: bcdaf7f Previous: 08b0c74 Ratio
Child logger creation 492289 ops/sec (±0.56%) 449455 ops/sec (±1.15%) 0.91
Logging a string on root logger 816996 ops/sec (±8.51%) 775965 ops/sec (±7.41%) 0.95
Logging an object on root logger 666577 ops/sec (±5.78%) 559534 ops/sec (±18.65%) 0.84
Logging an object with a message on root logger 3198 ops/sec (±243.04%) 9135 ops/sec (±203.24%) 2.86
Logging an object with a redacted prop on root logger 451213 ops/sec (±7.97%) 451119 ops/sec (±7.90%) 1.00
Logging a nested 3-level object on root logger 395124 ops/sec (±7.56%) 375816 ops/sec (±6.61%) 0.95

This comment was automatically generated by workflow using github-action-benchmark.

@svc-cli-bot
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark 'Logger Benchmarks - ubuntu-latest'.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 2.

Benchmark suite Current: bcdaf7f Previous: 08b0c74 Ratio
Logging an object with a message on root logger 3198 ops/sec (±243.04%) 9135 ops/sec (±203.24%) 2.86

This comment was automatically generated by workflow using github-action-benchmark.

@svc-cli-bot
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Logger Benchmarks - windows-latest

Benchmark suite Current: bcdaf7f Previous: 08b0c74 Ratio
Child logger creation 318422 ops/sec (±0.82%) 321602 ops/sec (±0.79%) 1.01
Logging a string on root logger 781695 ops/sec (±6.74%) 726720 ops/sec (±4.99%) 0.93
Logging an object on root logger 500200 ops/sec (±8.62%) 634297 ops/sec (±6.23%) 1.27
Logging an object with a message on root logger 11076 ops/sec (±189.18%) 8676 ops/sec (±199.20%) 0.78
Logging an object with a redacted prop on root logger 429626 ops/sec (±5.41%) 444888 ops/sec (±5.96%) 1.04
Logging a nested 3-level object on root logger 295788 ops/sec (±6.91%) 305740 ops/sec (±6.91%) 1.03

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.