@vscode/vscode-settings-history 0.0.2-42 → 0.0.2-44
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 +5055 -0
- package/dist/vscode-settings.d.ts +104 -2
- package/package.json +1 -1
|
@@ -12234,6 +12234,101 @@ 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
|
+
|
|
12308
|
+
// ── 1.129.1: +1, ~3 ──
|
|
12309
|
+
export type VscodeSettings_1_129_1 = Patch<VscodeSettings_1_129_0, {
|
|
12310
|
+
readonly 'chat.agent.maxRequests'?: number;
|
|
12311
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
12312
|
+
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';
|
|
12313
|
+
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';
|
|
12314
|
+
}, never>;
|
|
12315
|
+
|
|
12316
|
+
// ── 1.130.0-insider+2026071716: +9, ~3, -2 ──
|
|
12317
|
+
export type VscodeSettings_1_130_0_insider_2026071716 = Patch<VscodeSettings_1_130_0_insider_2026071611, {
|
|
12318
|
+
readonly 'accessibility.signals.voiceRecordingStopped'?: Record<string, unknown>;
|
|
12319
|
+
readonly 'agents.voice.language'?: 'auto' | 'en' | 'de' | 'es' | 'fr' | 'it' | 'pt' | 'ja' | 'ko' | 'zh';
|
|
12320
|
+
readonly 'chat.agentHost.systemProxy.enabled'?: boolean;
|
|
12321
|
+
readonly 'chat.assistedPermissions.enabled'?: boolean;
|
|
12322
|
+
readonly 'chat.defaultConfiguration'?: Record<string, unknown>;
|
|
12323
|
+
readonly 'chat.defaultToCopilotHarness'?: boolean;
|
|
12324
|
+
readonly 'chat.editor.preferCopilotHarness'?: boolean;
|
|
12325
|
+
readonly 'chat.speechToText.enabled'?: boolean;
|
|
12326
|
+
readonly 'chat.speechToText.mode'?: 'auto' | 'toggle' | 'pushToTalk';
|
|
12327
|
+
readonly 'chat.speechToText.model'?: 'onnx-community/whisper-tiny' | 'onnx-community/whisper-base' | 'onnx-community/whisper-small';
|
|
12328
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
12329
|
+
readonly 'chat.verbose'?: boolean;
|
|
12330
|
+
}, 'chat.editor.defaultProvider' | 'chat.experimental.autoApprovals.enabled'>;
|
|
12331
|
+
|
|
12237
12332
|
// ── Version map ──
|
|
12238
12333
|
// Stable entries map directly to their settings type.
|
|
12239
12334
|
// Insider entries map to a nested record keyed by 10-digit build release date
|
|
@@ -12284,6 +12379,9 @@ interface VscodeVersionMap {
|
|
|
12284
12379
|
'1.126.0': VscodeSettings_1_126_0;
|
|
12285
12380
|
'1.127.0': VscodeSettings_1_127_0;
|
|
12286
12381
|
'1.128.0': VscodeSettings_1_128_0;
|
|
12382
|
+
'1.128.1': VscodeSettings_1_128_1;
|
|
12383
|
+
'1.129.0': VscodeSettings_1_129_0;
|
|
12384
|
+
'1.129.1': VscodeSettings_1_129_1;
|
|
12287
12385
|
'1.121.0-insider': InsiderBuilds<{
|
|
12288
12386
|
'2026051305': VscodeSettings_1_121_0_insider_2026051305;
|
|
12289
12387
|
'2026051505': VscodeSettings_1_121_0_insider_2026051505;
|
|
@@ -12340,11 +12438,15 @@ interface VscodeVersionMap {
|
|
|
12340
12438
|
'2026071020': VscodeSettings_1_129_0_insider_2026071020;
|
|
12341
12439
|
'2026071317': VscodeSettings_1_129_0_insider_2026071317;
|
|
12342
12440
|
}>;
|
|
12441
|
+
'1.130.0-insider': InsiderBuilds<{
|
|
12442
|
+
'2026071611': VscodeSettings_1_130_0_insider_2026071611;
|
|
12443
|
+
'2026071716': VscodeSettings_1_130_0_insider_2026071716;
|
|
12444
|
+
}>;
|
|
12343
12445
|
}
|
|
12344
12446
|
|
|
12345
|
-
export type LatestVscodeSettings =
|
|
12447
|
+
export type LatestVscodeSettings = VscodeSettings_1_129_1;
|
|
12346
12448
|
|
|
12347
|
-
export type LatestInsiderVscodeSettings =
|
|
12449
|
+
export type LatestInsiderVscodeSettings = VscodeSettings_1_130_0_insider_2026071716;
|
|
12348
12450
|
|
|
12349
12451
|
export type VscodeVersion = keyof VscodeVersionMap;
|
|
12350
12452
|
|