rushstack
rushstack copied to clipboard
Monorepo for tools developed by the Rush Stack community
## Summary Support verbatimModuleSyntax ## Repro steps Use TypeScript 5.0 with --verbatimModuleSyntax flag. **Expected result:** Works **Actual result:** ``` ERROR: Error parsing tsconfig.json content: Unknown compiler option 'verbatimModuleSyntax'. ``` ##...
There are cases where TSC decides it's okay to inline `import` calls. In most cases, API-Extractor seems to handle these correctly when generating its rollups, but there are some cases...
## Summary - Create JSON-based selector expressions, allowing for complex selection of projects. - Implement an API-level Project Selector, which can process these expressions. - Add a new selector parser,...
## Summary Provides the option for Cloud Cache providers to directly read the existing local cache entry when writing and write to a local file that will be ingested into...
## Summary Upgrade package-json to tackle vulnerability in http-cache-semantics ## Details http-cache-semantics is a dependency for cacheable-request which is a dependency for package-json. Upgraded package-json to fix this (package-json: 8.1.0...
## Summary In @microsoft/api-extractor there is a dependency on typescript, and this PR converts that from a hard dependency to a peerDependency, so the client can supply their own typescript...
**Summary** Fixed https://github.com/microsoft/rushstack/issues/1958 **Details** API reports and DTS rollouts generated show signs of spurious inferred union types between incremental build. This implementation simply introduces a sort modifier to sort all...
## Summary This PR add a feature to `rush-sdk`. ## Details Before invoking install-and-run rush, try to load rush-lib from rush global folder for a better reuse of installed rush-lib....
## Summary Add `--peer` flag for `rush add`, for adding peer dependencies. Fixes #1456. ## Details - Extend existing functionality to also include peer dependencies. ## How it was tested...
## Summary Implements a wrapper around `prettier` that formats either staged files, or files changed since a specified Git revision. Can also be run in CI mode with `--check` to...