Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Comment on lines +32 to +35
Copy link

Copilot AI Mar 24, 2026

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.

Suggested change
* 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)
* 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)

Copilot uses AI. Check for mistakes.

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.
Copy link

Copilot AI Mar 24, 2026

Choose a reason for hiding this comment

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

Typo: "behavorial" should be "behavioral".

Suggested change
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 uses AI. Check for mistakes.
Comment on lines +30 to +38
Copy link

Copilot AI Mar 24, 2026

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.

Suggested change
**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.

Copilot uses AI. Check for mistakes.

There are many ways to [contribute](https://github.com/microsoft/TypeScript/blob/main/CONTRIBUTING.md) to TypeScript.
* [Submit bugs](https://github.com/microsoft/TypeScript/issues) and help us verify fixes as they are checked in.
* Review the [source code changes](https://github.com/microsoft/TypeScript/pulls).
Expand Down
Loading