-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Update readme to note current repo state #63292
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -27,6 +27,16 @@ npm install -D typescript@next | |||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||
| ## Contribute | ||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||
| **NOTE: Code changes in this repo are now limited to a small category of fixes**: | ||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||
| * Crashes that were introduced in 5.9 or 6.0 that *also* repro in 7.0 *and* have a portable fix *and* don't incur other behavioral changes | ||||||||||||||||||||||||||||||||||||||||||
| * Security issues | ||||||||||||||||||||||||||||||||||||||||||
| * Language service crashes that substantially impact mainline usage | ||||||||||||||||||||||||||||||||||||||||||
| * Serious regressions from 5.9 (these must *seriously* impact a *large* proportion of users) | ||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||
| Most bug fixes should be submitted to the [typescript-go](https://github.com/microsoft/TypeScript-go) repository. | ||||||||||||||||||||||||||||||||||||||||||
| Feature additions and behavorial changes are currently on pause until TypeScript 7.0 is completed. | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
| Feature additions and behavorial changes are currently on pause until TypeScript 7.0 is completed. | |
| Feature additions and behavioral changes are currently on pause until TypeScript 7.0 is completed. |
Copilot
AI
Mar 24, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This guidance is inconsistent with CONTRIBUTING.md, which currently says all code changes should go to the typescript-go repo and that this repo only accepts critical 6.0 fixes. Consider aligning the wording here with CONTRIBUTING.md (and/or linking to it) so contributors get a single clear instruction.
This issue also appears on line 37 of the same file.
| **NOTE: Code changes in this repo are now limited to a small category of fixes**: | |
| * Crashes that were introduced in 5.9 or 6.0 that *also* repro in 7.0 *and* have a portable fix *and* don't incur other behavioral changes | |
| * Security issues | |
| * Language service crashes that substantially impact mainline usage | |
| * Serious regressions from 5.9 (these must *seriously* impact a *large* proportion of users) | |
| Most bug fixes should be submitted to the [typescript-go](https://github.com/microsoft/TypeScript-go) repository. | |
| Feature additions and behavorial changes are currently on pause until TypeScript 7.0 is completed. | |
| **NOTE: All code changes should be made in the [typescript-go](https://github.com/microsoft/TypeScript-go) repository. This repo only accepts a small category of critical TypeScript 6.0 fixes**: | |
| * Crashes that were introduced in 5.9 or 6.0 that *also* repro in 7.0 *and* have a portable fix *and* don't incur other behavioral changes | |
| * Security issues | |
| * Language service crashes that substantially impact mainline usage | |
| * Serious regressions from 5.9 (these must *seriously* impact a *large* proportion of users) | |
| For all other changes (including most bug fixes, new features, and behavioral changes), please use the [typescript-go](https://github.com/microsoft/TypeScript-go) repository as described in our [CONTRIBUTING](https://github.com/microsoft/TypeScript/blob/main/CONTRIBUTING.md) guidelines. | |
| Feature additions and behavioral changes are not currently being accepted in this repository. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The new bullet list is indented (two leading spaces before
*), but other lists in this README are not. Consider removing the extra indentation to keep Markdown formatting consistent within the file.