Hello,
I have an issue with the lib and generic types.
Steps to reproduce:
generate schema for a file containing this type
export type MyType<T extends string> = { a: string; b: T };
results in:
Generated json schema have more than one definition:
- "src/request.schema.json"
Validation is compromised. Exclude unwanted types with @internal tsDoc.
Could you please explain what I am doing wrong?