Closed
Description
While playing with the transform option I noticed the ~lib/rt/index-full source is recognized as SourceKind.USER_ENTRY as is my user generated entry file, I would have thought it would be SourceKind.LIBRARY
If that is the intended classification how would one determine the difference between a user file in this scenario
It is classified as such due to the following
//taken from src/parser.ts:140
//path= ~lib/rt/index-full
path.indexOf(PATH_DELIMITER, LIBRARY_PREFIX.length) < 0
//results in 7<0=false
Lines 134 to 144 in 024d9de