@typescript-deploys/pr-build 6.0.0-pr-63084-6 → 6.0.0-pr-63539-29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -1
- package/lib/_tsc.js +170 -80
- package/lib/lib.dom.d.ts +8170 -3816
- package/lib/lib.es2015.collection.d.ts +7 -2
- package/lib/lib.es2015.core.d.ts +1 -1
- package/lib/lib.es2015.iterable.d.ts +1 -1
- package/lib/lib.es2015.symbol.d.ts +1 -1
- package/lib/lib.es2017.string.d.ts +20 -16
- package/lib/lib.es2020.bigint.d.ts +4 -4
- package/lib/lib.es2020.intl.d.ts +5 -5
- package/lib/lib.es2020.symbol.wellknown.d.ts +1 -1
- package/lib/lib.es2022.regexp.d.ts +1 -1
- package/lib/lib.es2023.intl.d.ts +9 -1
- package/lib/lib.es2025.collection.d.ts +94 -0
- package/lib/lib.es2025.d.ts +23 -0
- package/lib/lib.es2025.full.d.ts +22 -0
- package/lib/lib.es2025.intl.d.ts +200 -0
- package/lib/lib.es2025.regexp.d.ts +30 -0
- package/lib/lib.es5.d.ts +26 -26
- package/lib/lib.esnext.collection.d.ts +19 -66
- package/lib/lib.esnext.d.ts +4 -5
- package/lib/lib.esnext.date.d.ts +21 -0
- package/lib/lib.esnext.intl.d.ts +89 -1
- package/lib/lib.esnext.temporal.d.ts +485 -0
- package/lib/lib.webworker.d.ts +2659 -821
- package/lib/typescript.d.ts +6 -4
- package/lib/typescript.js +211 -91
- package/package.json +18 -19
- /package/lib/{lib.esnext.float16.d.ts → lib.es2025.float16.d.ts} +0 -0
- /package/lib/{lib.esnext.iterator.d.ts → lib.es2025.iterator.d.ts} +0 -0
- /package/lib/{lib.esnext.promise.d.ts → lib.es2025.promise.d.ts} +0 -0
package/README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
|
|
2
1
|
# TypeScript
|
|
3
2
|
|
|
3
|
+
<!-- CODING AGENTS: READ AGENTS.md BEFORE WRITING CODE -->
|
|
4
|
+
|
|
4
5
|
[](https://github.com/microsoft/TypeScript/actions/workflows/ci.yml)
|
|
5
6
|
[](https://www.npmjs.com/package/typescript)
|
|
6
7
|
[](https://www.npmjs.com/package/typescript)
|
|
@@ -27,6 +28,16 @@ npm install -D typescript@next
|
|
|
27
28
|
|
|
28
29
|
## Contribute
|
|
29
30
|
|
|
31
|
+
**NOTE: Code changes in this repo are now limited to a small category of fixes**:
|
|
32
|
+
|
|
33
|
+
* 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
|
|
34
|
+
* Security issues
|
|
35
|
+
* Language service crashes that substantially impact mainline usage
|
|
36
|
+
* Serious regressions from 5.9 (these must *seriously* impact a *large* proportion of users)
|
|
37
|
+
|
|
38
|
+
Most bug fixes should be submitted to the [typescript-go](https://github.com/microsoft/TypeScript-go) repository.
|
|
39
|
+
Feature additions and behavioral changes are currently on pause until TypeScript 7.0 is completed.
|
|
40
|
+
|
|
30
41
|
There are many ways to [contribute](https://github.com/microsoft/TypeScript/blob/main/CONTRIBUTING.md) to TypeScript.
|
|
31
42
|
* [Submit bugs](https://github.com/microsoft/TypeScript/issues) and help us verify fixes as they are checked in.
|
|
32
43
|
* Review the [source code changes](https://github.com/microsoft/TypeScript/pulls).
|