I encountered an issue while generating a schema. I received the following error:
TypeError: Unsupported type: import("src/UtilInterfaces").PartialOption<B, D> at JsonSchemaGenerator.getDefinitionForRootType
There are some types that are inevitably unsupported, but they might just be some types that I don't need. Currently, I can generate normally by directly removing var error = new TypeError("Unsupported type: " + propertyTypeString);, but this seems odd.
Is there a way to directly ignore such errors? The ignoreError:true option doesn't seem to have any effect on these errors. Any help would be appreciated.
I encountered an issue while generating a schema. I received the following error:
There are some types that are inevitably unsupported, but they might just be some types that I don't need. Currently, I can generate normally by directly removing
var error = new TypeError("Unsupported type: " + propertyTypeString);
, but this seems odd.Is there a way to directly ignore such errors? The
ignoreError:true
option doesn't seem to have any effect on these errors. Any help would be appreciated.