refactor [NET-1652]: Clean-up tsconfigs for the test-utils package
#3276
+44
−33
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.
This pull request updates TypeScript project references and configuration for the
test-utilspackage and its consumers. The main change is to simplify references totest-utilsby pointing directly to the package directory instead of specific config files, and to clean up and clarify TypeScript config files for better project structure and build reliability.TypeScript project reference updates
autocertifier-server,cdn-location,dht,node,proto-rpc, andsdk) to reference thetest-utilspackage directly instead oftest-utils/tsconfig.node.jsonin their various TypeScript config files (tsconfig.node.json,tsconfig.jest.json,tsconfig.browser.json).test-utilspackage configuration improvementstest-utils: added a roottsconfig.jsonwith composite enabled and explicit references, reduced thetsconfig.jest.jsoninclude scope to only thetestdirectory, and improved the formatting oftsconfig.node.json.Build and script adjustments
buildandcheckscripts intest-utils/package.jsonto use the root build and to ensure both jest and node configs are checked for type correctness.