typescript 5.6.0-dev.20240808 → 5.6.0-dev.20240810
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 +241 -110
- package/lib/typescript.d.ts +1 -0
- package/lib/typescript.js +313 -151
- package/package.json +2 -2
package/lib/typescript.d.ts
CHANGED
|
@@ -8241,6 +8241,7 @@ declare namespace ts {
|
|
|
8241
8241
|
readonly interactiveInlayHints?: boolean;
|
|
8242
8242
|
readonly allowRenameOfImportPath?: boolean;
|
|
8243
8243
|
readonly autoImportFileExcludePatterns?: string[];
|
|
8244
|
+
readonly autoImportSpecifierExcludeRegexes?: string[];
|
|
8244
8245
|
readonly preferTypeOnlyAutoImports?: boolean;
|
|
8245
8246
|
/**
|
|
8246
8247
|
* Indicates whether imports should be organized in a case-insensitive manner.
|