align tooling with ts-lib-starter - #19
Merged
Merged
Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #19 +/- ##
=========================================
+ Coverage 2.60% 3.81% +1.20%
=========================================
Files 11 11
Lines 345 236 -109
Branches 35 35
=========================================
Hits 9 9
+ Misses 307 198 -109
Partials 29 29
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
mrhyde
force-pushed
the
chore/align-with-template
branch
from
August 2, 2026 16:47
bdfa057 to
63c21d8
Compare
mrhyde
force-pushed
the
chore/align-with-template
branch
from
August 2, 2026 16:50
63c21d8 to
37da735
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Brings tvt onto the same toolchain as the template so future node and dependency bumps stop requiring per-repo workflow edits.
What changed:
build,test on blacksmith-4vcpu-ubuntu-2404,test on blacksmith-4vcpu-windows-2025. Branch protection on master has already been switched to these three contexts, so the oldbuild on node@22style checks are no longer required.tsconfig 4.0.0 turns on erasableSyntaxOnly, which rejects the two enums in lib/types.ts. Both are now const objects. NET_SDK_ERROR loses its numeric reverse mapping, so the two call sites that turned an error code back into a name use a NET_SDK_ERROR_NAME map instead. rootDir is set in tsconfig.build.json because TS7 no longer infers it for the declaration build.
The build still uses swc rather than tsdown. tsdown emits stage-3 decorator syntax verbatim (oxc only transforms legacy decorators), which makes build/device.js unparseable, so device.ts's @auth and @measure usages block that swap. Tracked in #20.