es-module-lexer
es-module-lexer copied to clipboard
Feature request: star export reporting
export * from './lib/export/core';
// => imports:["./lib/export/core"] exports:[]
Are you looking to be able to track star exports? This is a feature we could add.
Are you looking to be able to track star exports? This is a feature we could add.
Yes, that's meant to be an export. it could be :
export * from './lib/export/core';
// => imports:["./lib/export/core"] exports:["./lib/export/core"]
A pattern we use internally in RollupJS is *./lib/export/core
as the export name. Perhaps we can take a leaf from that one.