-
Notifications
You must be signed in to change notification settings - Fork 13.2k
Closed
Labels
BugA bug in TypeScriptA bug in TypeScriptFixedA PR has been merged for this issueA PR has been merged for this issue
Description
TypeScript Version: 2.4.1
Code
// export.ts
const foo = 1;
export default foo;// re-export.ts
export { default } from './export';// re-export-dep.ts
import fooDefault from './re-export';// tsconfig.json
{
"files": [
"./re-export-dep.ts"
]
}Expected behavior:
When running "find references" on foo in export.ts, the usage in re-export-dep.ts should be found.
Actual behavior:
The reference is not found.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
BugA bug in TypeScriptA bug in TypeScriptFixedA PR has been merged for this issueA PR has been merged for this issue

