typescript 5.4.0-dev.20231103 → 5.4.0-dev.20231104
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/lib.es2016.d.ts +1 -0
- package/lib/lib.es2016.intl.d.ts +31 -0
- package/lib/tsc.js +235 -72
- package/lib/tsserver.js +244 -78
- package/lib/typescript.js +253 -89
- package/lib/typingsInstaller.js +3 -1
- package/package.json +2 -2
package/lib/typingsInstaller.js
CHANGED
|
@@ -54,7 +54,7 @@ var path = __toESM(require("path"));
|
|
|
54
54
|
|
|
55
55
|
// src/compiler/corePublic.ts
|
|
56
56
|
var versionMajorMinor = "5.4";
|
|
57
|
-
var version = `${versionMajorMinor}.0-dev.
|
|
57
|
+
var version = `${versionMajorMinor}.0-dev.20231104`;
|
|
58
58
|
|
|
59
59
|
// src/compiler/core.ts
|
|
60
60
|
var emptyArray = [];
|
|
@@ -25650,6 +25650,7 @@ var libEntries = [
|
|
|
25650
25650
|
["es2015.symbol", "lib.es2015.symbol.d.ts"],
|
|
25651
25651
|
["es2015.symbol.wellknown", "lib.es2015.symbol.wellknown.d.ts"],
|
|
25652
25652
|
["es2016.array.include", "lib.es2016.array.include.d.ts"],
|
|
25653
|
+
["es2016.intl", "lib.es2016.intl.d.ts"],
|
|
25653
25654
|
["es2017.date", "lib.es2017.date.d.ts"],
|
|
25654
25655
|
["es2017.object", "lib.es2017.object.d.ts"],
|
|
25655
25656
|
["es2017.sharedmemory", "lib.es2017.sharedmemory.d.ts"],
|
|
@@ -25981,6 +25982,7 @@ var targetOptionDeclaration = {
|
|
|
25981
25982
|
affectsModuleResolution: true,
|
|
25982
25983
|
affectsEmit: true,
|
|
25983
25984
|
affectsBuildInfo: true,
|
|
25985
|
+
deprecatedKeys: /* @__PURE__ */ new Set(["es3"]),
|
|
25984
25986
|
paramType: Diagnostics.VERSION,
|
|
25985
25987
|
showInSimplifiedHelpView: true,
|
|
25986
25988
|
category: Diagnostics.Language_and_Environment,
|
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.4.0-dev.
|
|
5
|
+
"version": "5.4.0-dev.20231104",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"description": "TypeScript is a language for application scale JavaScript development",
|
|
8
8
|
"keywords": [
|
|
@@ -114,5 +114,5 @@
|
|
|
114
114
|
"node": "20.1.0",
|
|
115
115
|
"npm": "8.19.4"
|
|
116
116
|
},
|
|
117
|
-
"gitHead": "
|
|
117
|
+
"gitHead": "d2fdf851cc630d812b7b336a43cc1f363ba25083"
|
|
118
118
|
}
|