From 274f2d17c64446a8097bb24f7f02f9d14044aa00 Mon Sep 17 00:00:00 2001 From: JongKyung Lee Date: Sat, 25 Jul 2026 21:18:36 +0900 Subject: [PATCH] chore(vscode): move TypeScript settings to their js/ts.* replacements VS Code deprecated the `typescript.*` keys for settings shared between JavaScript and TypeScript in favour of the `js/ts.*` namespace. --- .vscode/settings.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index e3d1f0ffbb..4f818e3990 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -14,9 +14,9 @@ "[json]": { "editor.defaultFormatter": "oxc.oxc-vscode" }, - "typescript.preferences.importModuleSpecifierEnding": "js", - "typescript.reportStyleChecksAsWarnings": false, - "typescript.updateImportsOnFileMove.enabled": "always", - "typescript.experimental.useTsgo": true, + "js/ts.preferences.importModuleSpecifierEnding": "js", + "js/ts.reportStyleChecksAsWarnings": false, + "js/ts.updateImportsOnFileMove.enabled": "always", + "js/ts.experimental.useTsgo": true, "vitest.configSearchPatternExclude": "{**/node_modules/**,**/vendor/**,**/.*/**,**/*.d.ts,**/crates/vite_cli_snapshots/tests/cli_snapshots/**}" }