Is there any plug-in in vscode that can prompt for the path of the custom path alias, when import?

is configured in webpack as follows:
resolve: {

extensions: [".js", ".vue", ".json"],
alias: {
  "vue$": "vue/dist/vue.esm.js",
  "@": resolve("src"),
}

},
where @ points to the src directory, and
when importing components elsewhere, can any relevant plug-ins recognize the list of files in the path when typing import {} from"@ / xxx"?

Mar.17,2021
Menu