From 24a24cec5af488f99a66607c34329c92fa3b3c3a Mon Sep 17 00:00:00 2001 From: Luis Martinez Suarez Date: Fri, 4 Aug 2023 14:28:38 +0200 Subject: [PATCH] Update settings.json I think automatically suggesting relative imports by vscode intellisense is an addition that plays nicely with the recommendations in the docs --- .vscode/settings.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 124dc6d4..4c2de71e 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,5 +2,6 @@ "editor.formatOnSave": true, "editor.codeActionsOnSave": { "source.fixAll.eslint": true - } + }, + "typescript.preferences.importModuleSpecifier": "non-relative" }