-
Notifications
You must be signed in to change notification settings - Fork 13.2k
Closed as not planned
Labels
7.0 LS MigrationDomain: LS: Completion ListsThe issue relates to showing completion lists in an editorThe issue relates to showing completion lists in an editorHelp WantedYou can do thisYou can do thisPossible ImprovementThe current behavior isn't wrong, but it's possible to see that it might be better in some casesThe current behavior isn't wrong, but it's possible to see that it might be better in some cases
Milestone
Description
π Search Terms
- path completion
- node.js import path intellisense
π Version & Regression Information
- Tested on TS 5.7.3 with VSC 1.98.0 and 5.8.2 with VSC 1.98.2
β― Playground Link
https://github.com/anthonyma94/path-completion-repro
π» Code
package.json
"imports": {
"#foo/*": {
"types": [
"./src/foo/*.ts",
"./src/foo/*"
],
"default": [
"./src/foo/*"
]
}
},src/foo/test.ts
export const testFunc = () => {}
src/index.ts
import { testFunc } from "#foo/test";
testFunc();
π Actual behavior
Repro for #52460.
Path completion intellisense kicks in for symbol resolution:
But not path resolution:
π Expected behavior
I expect Intellisense to work for both scenarios.
Additional information about the issue
No response
mkvlrn, AndreaPontrandolfo, mitcsutt, its-me-VOID, bakeyevrus and 6 moreits-me-VOID
Metadata
Metadata
Assignees
Labels
7.0 LS MigrationDomain: LS: Completion ListsThe issue relates to showing completion lists in an editorThe issue relates to showing completion lists in an editorHelp WantedYou can do thisYou can do thisPossible ImprovementThe current behavior isn't wrong, but it's possible to see that it might be better in some casesThe current behavior isn't wrong, but it's possible to see that it might be better in some cases

