typescript 5.5.0-dev.20240411 → 5.5.0-dev.20240412
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 +530 -532
- package/lib/typescript.d.ts +2 -0
- package/lib/typescript.js +544 -532
- package/package.json +2 -2
package/lib/typescript.d.ts
CHANGED
|
@@ -2416,6 +2416,7 @@ declare namespace ts {
|
|
|
2416
2416
|
ES2020 = "es2020",
|
|
2417
2417
|
ES2021 = "es2021",
|
|
2418
2418
|
ES2022 = "es2022",
|
|
2419
|
+
ES2023 = "es2023",
|
|
2419
2420
|
ESNext = "esnext",
|
|
2420
2421
|
JSON = "json",
|
|
2421
2422
|
Latest = "esnext",
|
|
@@ -7019,6 +7020,7 @@ declare namespace ts {
|
|
|
7019
7020
|
ES2020 = 7,
|
|
7020
7021
|
ES2021 = 8,
|
|
7021
7022
|
ES2022 = 9,
|
|
7023
|
+
ES2023 = 10,
|
|
7022
7024
|
ESNext = 99,
|
|
7023
7025
|
JSON = 100,
|
|
7024
7026
|
Latest = 99,
|