@definitelytyped/typescript-packages 0.1.6 → 0.1.8
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/CHANGELOG.md +16 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @definitelytyped/typescript-packages
|
|
2
2
|
|
|
3
|
+
## 0.1.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 9aaf5fb: Remove support for TypeScript 5.0. TypeScript 5.8 is now marked as stable.
|
|
8
|
+
- Updated dependencies [9aaf5fb]
|
|
9
|
+
- @definitelytyped/typescript-versions@0.1.8
|
|
10
|
+
|
|
11
|
+
## 0.1.7
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 70111bc: Support TS 5.9
|
|
16
|
+
- Updated dependencies [70111bc]
|
|
17
|
+
- @definitelytyped/typescript-versions@0.1.7
|
|
18
|
+
|
|
3
19
|
## 0.1.6
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@definitelytyped/typescript-packages",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "Reexport of all supported TypeScript versions",
|
|
5
5
|
"author": "Andrew Branch <andrew@wheream.io>",
|
|
6
6
|
"homepage": "https://github.com/microsoft/DefinitelyTyped-tools/tree/main/packages/typescript-packages#readme",
|
|
@@ -21,7 +21,6 @@
|
|
|
21
21
|
"node": ">=18.18.0"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"typescript-5.0": "npm:typescript@~5.0.0-0",
|
|
25
24
|
"typescript-5.1": "npm:typescript@~5.1.0-0",
|
|
26
25
|
"typescript-5.2": "npm:typescript@~5.2.0-0",
|
|
27
26
|
"typescript-5.3": "npm:typescript@~5.3.0-0",
|
|
@@ -30,6 +29,7 @@
|
|
|
30
29
|
"typescript-5.6": "npm:typescript@~5.6.0-0",
|
|
31
30
|
"typescript-5.7": "npm:typescript@~5.7.0-0",
|
|
32
31
|
"typescript-5.8": "npm:typescript@~5.8.0-0",
|
|
33
|
-
"
|
|
32
|
+
"typescript-5.9": "npm:typescript@~5.9.0-0",
|
|
33
|
+
"@definitelytyped/typescript-versions": "0.1.8"
|
|
34
34
|
}
|
|
35
35
|
}
|