prevent TS exports marked as "@internal" or "@private" to be exported in readTypeScriptModules()
dennybiasiolli opened this issue · 3 comments
If we have something like this
/**
* @private
*/
export var y = 12;
/**
* @internal
*/
export var z = 123;
var y
and var z
will be exported as results of readTypeScriptModules()
It will be useful because in ionic2 they are using this functionality in their custom typescript processor: repo link
I think you want to use @internal
?
On 14 November 2016 at 19:39, Denny Biasiolli notifications@github.com
wrote:
If we have something like this
/**
- @Private
*/
export var y = 12;var y will be exported as results of readTypeScriptModules()
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
#199, or mute the thread
https://github.com/notifications/unsubscribe-auth/AAA9J_isP8YtVk1bejvjDIuakkbTkWHgks5q-LkLgaJpZM4KxuGg
.
@petebacondarwin same problem with @internal
, now I include this in PR
See #200 (comment)