fixes VSCode auto importing (#1358)

automatic imports resolved to relative (".../../components") instead of respecting tsconfig path ("@components")
This commit is contained in:
Jamie Pine
2021-12-20 02:38:46 -08:00
committed by GitHub
parent d95e26d55c
commit c9a8bd369c

View File

@@ -5,5 +5,6 @@
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"eslint.run": "onSave"
"eslint.run": "onSave",
"typescript.preferences.importModuleSpecifier": "non-relative"
}