in src/type-generator.ts [561:570]
private isExcluded(fqn: string) { for (const pattern of this.exclude) { const re = new RegExp(pattern); if (re.test(fqn)) { return true; } } return false; }