in lib/names.ts [1:8]
export function getDTName(s: string) {
if (s.indexOf('@') === 0 && s.indexOf('/') !== -1) {
// we have a scoped module, e.g. @bla/foo
// which should be converted to bla__foo
s = s.substr(1).replace('/', '__');
}
return s;
}