typescript 5.6.0-dev.20240612 → 5.6.0-dev.20240614
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/lib/tsc.js +482 -615
- package/lib/tsserver.js +0 -12
- package/lib/typescript.d.ts +55 -112
- package/lib/typescript.js +899 -790
- package/package.json +2 -4
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.6.0-dev.
|
|
5
|
+
"version": "5.6.0-dev.20240614",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"description": "TypeScript is a language for application scale JavaScript development",
|
|
8
8
|
"keywords": [
|
|
@@ -44,7 +44,6 @@
|
|
|
44
44
|
"@esfx/canceltoken": "^1.0.0",
|
|
45
45
|
"@octokit/rest": "^20.1.1",
|
|
46
46
|
"@types/chai": "^4.3.16",
|
|
47
|
-
"@types/microsoft__typescript-etw": "^0.1.3",
|
|
48
47
|
"@types/minimist": "^1.2.5",
|
|
49
48
|
"@types/mocha": "^10.0.6",
|
|
50
49
|
"@types/ms": "^0.7.34",
|
|
@@ -102,7 +101,6 @@
|
|
|
102
101
|
"path": false,
|
|
103
102
|
"crypto": false,
|
|
104
103
|
"buffer": false,
|
|
105
|
-
"@microsoft/typescript-etw": false,
|
|
106
104
|
"source-map-support": false,
|
|
107
105
|
"inspector": false,
|
|
108
106
|
"perf_hooks": false
|
|
@@ -112,5 +110,5 @@
|
|
|
112
110
|
"node": "20.1.0",
|
|
113
111
|
"npm": "8.19.4"
|
|
114
112
|
},
|
|
115
|
-
"gitHead": "
|
|
113
|
+
"gitHead": "56289733a4fdbc0b2b7e9a338332acd1bcc86072"
|
|
116
114
|
}
|