@vscode/vscode-settings-history 0.0.2-42 → 0.0.2-43
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/dist/history.json +3650 -0
- package/dist/vscode-settings.d.ts +78 -2
- package/package.json +1 -1
|
@@ -12234,6 +12234,77 @@ export type VscodeSettings_1_129_0_insider_2026071317 = Patch<VscodeSettings_1_1
|
|
|
12234
12234
|
readonly 'workbench.editor.useModal'?: 'off' | 'some' | 'all';
|
|
12235
12235
|
}, 'agents.voice.textToSpeech' | 'chat.agent.maxRequests' | 'chat.generalPurposeAgent.enabled'>;
|
|
12236
12236
|
|
|
12237
|
+
// ── 1.128.1: ~2 ──
|
|
12238
|
+
export type VscodeSettings_1_128_1 = Patch<VscodeSettings_1_128_0, {
|
|
12239
|
+
readonly 'editor.defaultFoldingRangeProvider'?: string | null;
|
|
12240
|
+
readonly 'terminal.integrated.defaultProfile.linux'?: null | 'sh' | 'bash' | 'bash (2)' | 'rbash' | 'rbash (2)' | 'sh (2)' | 'dash' | 'dash (2)' | 'tmux' | 'screen' | 'pwsh' | 'pwsh (2)';
|
|
12241
|
+
}, never>;
|
|
12242
|
+
|
|
12243
|
+
// ── 1.129.0: +16, ~14, -3 ──
|
|
12244
|
+
export type VscodeSettings_1_129_0 = Patch<VscodeSettings_1_128_0, {
|
|
12245
|
+
readonly 'agents.voice.handsFree'?: boolean;
|
|
12246
|
+
readonly 'agents.voice.showTranscript'?: boolean;
|
|
12247
|
+
readonly 'agents.voice.speakResponses'?: boolean;
|
|
12248
|
+
readonly 'agents.voice.turn.silenceMs'?: number;
|
|
12249
|
+
readonly 'agents.voice.turn.stopPhrases'?: (string)[];
|
|
12250
|
+
readonly 'agents.voice.voice'?: 'victoria_neutral' | 'kevin_neutral' | 'maya_neutral' | 'daniel_neutral';
|
|
12251
|
+
readonly 'breadcrumbs.showEditorType'?: boolean;
|
|
12252
|
+
readonly 'chat.agentHost.agentDebugLog.enabled'?: boolean;
|
|
12253
|
+
readonly 'chat.agentHost.agentDebugLog.maxEventsInMemory'?: number;
|
|
12254
|
+
readonly 'chat.agentHost.byokModels.enabled'?: boolean;
|
|
12255
|
+
readonly 'chat.agentHost.modelCapabilityOverrides'?: Record<string, unknown>;
|
|
12256
|
+
readonly 'chat.agentHost.reasoningEffortOverride'?: string;
|
|
12257
|
+
readonly 'chat.customizations.promptMigration.enabled'?: boolean;
|
|
12258
|
+
readonly 'chat.defaultModel'?: string;
|
|
12259
|
+
readonly 'chat.plugins.enabledPlugins'?: Record<string, unknown>;
|
|
12260
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
12261
|
+
readonly 'chat.turnStatusPills'?: Record<string, unknown>;
|
|
12262
|
+
readonly 'editor.defaultFoldingRangeProvider'?: string | null;
|
|
12263
|
+
readonly 'editor.defaultFormatter'?: string | null;
|
|
12264
|
+
readonly 'editor.inlineSuggest.edits.longDistanceHintContextLineCount'?: number;
|
|
12265
|
+
readonly 'github.copilot.chat.claude48OpusPrompt.enabled'?: boolean;
|
|
12266
|
+
readonly 'github.copilot.chat.claudeSonnet5Prompt.enabled'?: boolean;
|
|
12267
|
+
readonly 'github.copilot.chat.localIndex.enabled'?: boolean;
|
|
12268
|
+
readonly 'github.copilot.chat.preferLongContext.enabled'?: boolean;
|
|
12269
|
+
readonly 'microsoft-sovereign-cloud.customEnvironment'?: Record<string, unknown>;
|
|
12270
|
+
readonly 'microsoft-sovereign-cloud.environment'?: 'ChinaCloud' | 'USGovernment' | 'custom';
|
|
12271
|
+
readonly 'notebook.defaultFormatter'?: string | null;
|
|
12272
|
+
readonly 'notebook.editorOptionsCustomizations'?: unknown;
|
|
12273
|
+
readonly 'workbench.editor.useModal'?: 'off' | 'some' | 'all';
|
|
12274
|
+
readonly 'workbench.experimental.modernUI'?: boolean;
|
|
12275
|
+
}, 'chat.agent.maxRequests' | 'chat.generalPurposeAgent.enabled' | 'github.copilot.chat.claude47OpusPrompt.enabled'>;
|
|
12276
|
+
|
|
12277
|
+
// ── 1.130.0-insider+2026071611: +6, ~21, -1 ──
|
|
12278
|
+
export type VscodeSettings_1_130_0_insider_2026071611 = Patch<VscodeSettings_1_129_0_insider_2026071317, {
|
|
12279
|
+
readonly 'agents.voice.enabled'?: boolean;
|
|
12280
|
+
readonly 'agents.voice.handsFree'?: boolean;
|
|
12281
|
+
readonly 'chat.agent.maxRequests'?: number;
|
|
12282
|
+
readonly 'chat.agentHost.copilotSdk.logLevel'?: 'info' | 'trace';
|
|
12283
|
+
readonly 'chat.byokUtilityModelDefault'?: 'none' | 'mainAgent' | 'copilot';
|
|
12284
|
+
readonly 'chat.defaultConfiguration'?: Record<string, unknown>;
|
|
12285
|
+
readonly 'chat.editor.codex.preferAgentHost'?: boolean;
|
|
12286
|
+
readonly 'chat.editor.localAgent.enabled'?: boolean;
|
|
12287
|
+
readonly 'chat.experimental.autoApprovals.enabled'?: boolean;
|
|
12288
|
+
readonly 'chat.tools.terminal.outputCompaction'?: boolean;
|
|
12289
|
+
readonly 'chat.turnStatusPills'?: unknown;
|
|
12290
|
+
readonly 'editor.defaultFormatter'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
|
|
12291
|
+
readonly 'javascript.preferences.autoImportSpecifierExcludeRegexes'?: (string)[];
|
|
12292
|
+
readonly 'js/ts.preferences.autoImportSpecifierExcludeRegexes'?: (string)[];
|
|
12293
|
+
readonly 'js/ts.tsdk.path'?: string;
|
|
12294
|
+
readonly 'js/ts.tsserver.diagnosticDir'?: string;
|
|
12295
|
+
readonly 'js/ts.tsserver.heapProfile'?: Record<string, unknown>;
|
|
12296
|
+
readonly 'js/ts.tsserver.node.path'?: string;
|
|
12297
|
+
readonly 'js/ts.tsserver.npm.path'?: string;
|
|
12298
|
+
readonly 'js/ts.tsserver.pluginPaths'?: (string)[];
|
|
12299
|
+
readonly 'notebook.defaultFormatter'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
|
|
12300
|
+
readonly 'terminal.integrated.tabs.allowAgentCliTitle'?: boolean;
|
|
12301
|
+
readonly 'typescript.npm'?: string;
|
|
12302
|
+
readonly 'typescript.preferences.autoImportSpecifierExcludeRegexes'?: (string)[];
|
|
12303
|
+
readonly 'typescript.tsdk'?: string;
|
|
12304
|
+
readonly 'typescript.tsserver.nodePath'?: string;
|
|
12305
|
+
readonly 'typescript.tsserver.pluginPaths'?: (string)[];
|
|
12306
|
+
}, 'terminal.integrated.initialHintCopilotCli'>;
|
|
12307
|
+
|
|
12237
12308
|
// ── Version map ──
|
|
12238
12309
|
// Stable entries map directly to their settings type.
|
|
12239
12310
|
// Insider entries map to a nested record keyed by 10-digit build release date
|
|
@@ -12284,6 +12355,8 @@ interface VscodeVersionMap {
|
|
|
12284
12355
|
'1.126.0': VscodeSettings_1_126_0;
|
|
12285
12356
|
'1.127.0': VscodeSettings_1_127_0;
|
|
12286
12357
|
'1.128.0': VscodeSettings_1_128_0;
|
|
12358
|
+
'1.128.1': VscodeSettings_1_128_1;
|
|
12359
|
+
'1.129.0': VscodeSettings_1_129_0;
|
|
12287
12360
|
'1.121.0-insider': InsiderBuilds<{
|
|
12288
12361
|
'2026051305': VscodeSettings_1_121_0_insider_2026051305;
|
|
12289
12362
|
'2026051505': VscodeSettings_1_121_0_insider_2026051505;
|
|
@@ -12340,11 +12413,14 @@ interface VscodeVersionMap {
|
|
|
12340
12413
|
'2026071020': VscodeSettings_1_129_0_insider_2026071020;
|
|
12341
12414
|
'2026071317': VscodeSettings_1_129_0_insider_2026071317;
|
|
12342
12415
|
}>;
|
|
12416
|
+
'1.130.0-insider': InsiderBuilds<{
|
|
12417
|
+
'2026071611': VscodeSettings_1_130_0_insider_2026071611;
|
|
12418
|
+
}>;
|
|
12343
12419
|
}
|
|
12344
12420
|
|
|
12345
|
-
export type LatestVscodeSettings =
|
|
12421
|
+
export type LatestVscodeSettings = VscodeSettings_1_129_0;
|
|
12346
12422
|
|
|
12347
|
-
export type LatestInsiderVscodeSettings =
|
|
12423
|
+
export type LatestInsiderVscodeSettings = VscodeSettings_1_130_0_insider_2026071611;
|
|
12348
12424
|
|
|
12349
12425
|
export type VscodeVersion = keyof VscodeVersionMap;
|
|
12350
12426
|
|