fixes VSCode auto importing (#1358)

automatic imports resolved to relative (".../../components") instead of respecting tsconfig path ("@components")
pull/1354/head^2
Jamie Pine 2021-12-20 02:38:46 -08:00 committed by GitHub
parent d95e26d55c
commit c9a8bd369c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

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