Closed
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.