typescript 5.4.0-dev.20240109 → 5.4.0-dev.20240111
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 +181 -55
- package/lib/tsserver.js +259 -79
- package/lib/typescript.d.ts +9 -0
- package/lib/typescript.js +258 -79
- package/lib/typingsInstaller.js +1 -1
- package/package.json +2 -2
package/lib/typescript.d.ts
CHANGED
|
@@ -2933,6 +2933,13 @@ declare namespace ts {
|
|
|
2933
2933
|
* Default: `false`
|
|
2934
2934
|
*/
|
|
2935
2935
|
readonly organizeImportsCaseFirst?: "upper" | "lower" | false;
|
|
2936
|
+
/**
|
|
2937
|
+
* Indicates where named type-only imports should sort. "inline" sorts named imports without regard to if the import is
|
|
2938
|
+
* type-only.
|
|
2939
|
+
*
|
|
2940
|
+
* Default: `last`
|
|
2941
|
+
*/
|
|
2942
|
+
readonly organizeImportsTypeOrder?: "last" | "first" | "inline";
|
|
2936
2943
|
/**
|
|
2937
2944
|
* Indicates whether {@link ReferencesResponseItem.lineText} is supported.
|
|
2938
2945
|
*/
|
|
@@ -7069,6 +7076,7 @@ declare namespace ts {
|
|
|
7069
7076
|
Default = "default",
|
|
7070
7077
|
This = "this",
|
|
7071
7078
|
InstantiationExpression = "__instantiationExpression",
|
|
7079
|
+
ImportAttributes = "__importAttributes",
|
|
7072
7080
|
}
|
|
7073
7081
|
/**
|
|
7074
7082
|
* This represents a string whose leading underscore have been escaped by adding extra leading underscores.
|
|
@@ -8784,6 +8792,7 @@ declare namespace ts {
|
|
|
8784
8792
|
readonly organizeImportsNumericCollation?: boolean;
|
|
8785
8793
|
readonly organizeImportsAccentCollation?: boolean;
|
|
8786
8794
|
readonly organizeImportsCaseFirst?: "upper" | "lower" | false;
|
|
8795
|
+
readonly organizeImportsTypeOrder?: "first" | "last" | "inline";
|
|
8787
8796
|
readonly excludeLibrarySymbolsInNavTo?: boolean;
|
|
8788
8797
|
}
|
|
8789
8798
|
/** Represents a bigint literal value without requiring bigint support */
|