typescript 5.5.0-dev.20240226 → 5.5.0-dev.20240228
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 +80 -214
- package/lib/tsserver.js +106 -239
- package/lib/typescript.d.ts +2 -0
- package/lib/typescript.js +107 -246
- package/lib/typingsInstaller.js +16 -17
- package/package.json +2 -2
package/lib/typescript.d.ts
CHANGED
|
@@ -3054,6 +3054,7 @@ declare namespace ts {
|
|
|
3054
3054
|
Lf = "Lf",
|
|
3055
3055
|
}
|
|
3056
3056
|
enum ScriptTarget {
|
|
3057
|
+
/** @deprecated */
|
|
3057
3058
|
ES3 = "ES3",
|
|
3058
3059
|
ES5 = "ES5",
|
|
3059
3060
|
ES6 = "ES6",
|
|
@@ -7695,6 +7696,7 @@ declare namespace ts {
|
|
|
7695
7696
|
Deferred = 7,
|
|
7696
7697
|
}
|
|
7697
7698
|
enum ScriptTarget {
|
|
7699
|
+
/** @deprecated */
|
|
7698
7700
|
ES3 = 0,
|
|
7699
7701
|
ES5 = 1,
|
|
7700
7702
|
ES2015 = 2,
|