From 8ac74c6a6e38270957c1154958ccdf1a7b98835c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cristian=20Pallar=C3=A9s?= Date: Wed, 6 May 2026 14:57:39 +0200 Subject: [PATCH] chore: update vscode config --- .vscode/settings.json | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index e63c379..bfa3658 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,16 +1,15 @@ { - "javascript.preferences.importModuleSpecifierEnding": "js", - "js/ts.implicitProjectConfig.target": "ESNext", - "typescript.tsc.autoDetect": "off", - "typescript.enablePromptUseWorkspaceTsdk": true, - "typescript.tsdk": "node_modules/typescript/lib", - "typescript.preferences.importModuleSpecifier": "project-relative", - "typescript.preferences.importModuleSpecifierEnding": "js", - "typescript.preferences.preferTypeOnlyAutoImports": true, + "editor.codeActionsOnSave": { + "source.fixAll.biome": "explicit", + "source.fixAll.eslint": "explicit" + }, "editor.defaultFormatter": "biomejs.biome", "editor.formatOnSave": true, - "editor.codeActionsOnSave": { - "source.fixAll.eslint": "explicit", - "source.fixAll.biome": "explicit" - } + "js/ts.format.enabled": false, + "js/ts.implicitProjectConfig.target": "ESNext", + "js/ts.preferences.importModuleSpecifier": "shortest", + "js/ts.preferences.importModuleSpecifierEnding": "js", + "js/ts.preferences.preferTypeOnlyAutoImports": true, + "js/ts.tsdk.path": "node_modules/typescript/lib", + "js/ts.tsdk.promptToUseWorkspaceVersion": true }