typescript 5.0.4 → 5.1.0-beta
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 +4 -2
- package/ThirdPartyNoticeText.txt +13 -13
- package/lib/lib.dom.d.ts +10477 -1222
- package/lib/lib.dom.iterable.d.ts +110 -3
- package/lib/lib.es2015.collection.d.ts +1 -1
- package/lib/lib.es2015.core.d.ts +2 -2
- package/lib/lib.es2020.bigint.d.ts +4 -4
- package/lib/lib.es2022.intl.d.ts +9 -0
- package/lib/lib.es5.d.ts +46 -33
- package/lib/lib.webworker.d.ts +3243 -286
- package/lib/lib.webworker.iterable.d.ts +99 -2
- package/lib/tsc.js +10534 -10099
- package/lib/tsserver.js +16011 -14472
- package/lib/tsserverlibrary.d.ts +540 -438
- package/lib/tsserverlibrary.js +16119 -14560
- package/lib/typescript.d.ts +480 -407
- package/lib/typescript.js +15284 -14247
- package/lib/typingsInstaller.js +3951 -7661
- package/lib/watchGuard.js +1 -1
- package/package.json +5 -4
- package/lib/README.md +0 -5
package/lib/watchGuard.js
CHANGED
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "typescript",
|
|
3
3
|
"author": "Microsoft Corp.",
|
|
4
4
|
"homepage": "https://www.typescriptlang.org/",
|
|
5
|
-
"version": "5.0
|
|
5
|
+
"version": "5.1.0-beta",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"description": "TypeScript is a language for application scale JavaScript development",
|
|
8
8
|
"keywords": [
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"tsserver": "./bin/tsserver"
|
|
27
27
|
},
|
|
28
28
|
"engines": {
|
|
29
|
-
"node": ">=
|
|
29
|
+
"node": ">=14.17"
|
|
30
30
|
},
|
|
31
31
|
"files": [
|
|
32
32
|
"bin",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"@typescript-eslint/eslint-plugin": "^5.33.1",
|
|
55
55
|
"@typescript-eslint/parser": "^5.33.1",
|
|
56
56
|
"@typescript-eslint/utils": "^5.33.1",
|
|
57
|
-
"azure-devops-node-api": "^
|
|
57
|
+
"azure-devops-node-api": "^12.0.0",
|
|
58
58
|
"chai": "^4.3.7",
|
|
59
59
|
"chalk": "^4.1.2",
|
|
60
60
|
"chokidar": "^3.5.3",
|
|
@@ -78,7 +78,8 @@
|
|
|
78
78
|
"ms": "^2.1.3",
|
|
79
79
|
"node-fetch": "^3.2.10",
|
|
80
80
|
"source-map-support": "^0.5.21",
|
|
81
|
-
"
|
|
81
|
+
"tslib": "^2.5.0",
|
|
82
|
+
"typescript": "^5.0.2",
|
|
82
83
|
"which": "^2.0.2"
|
|
83
84
|
},
|
|
84
85
|
"overrides": {
|
package/lib/README.md
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
# Read This!
|
|
2
|
-
|
|
3
|
-
**These files are not meant to be edited by hand.**
|
|
4
|
-
If you need to make modifications, the respective files should be changed within the repository's top-level `src` directory.
|
|
5
|
-
Running `hereby LKG` will then appropriately update the files in this directory.
|