@hoth/typescript-to-json-schema
Advanced tools
Comparing version 1.0.24 to 1.0.25
@@ -217,3 +217,3 @@ "use strict"; | ||
return node.getJsDocs().reduce((prev, jsdoc) => { | ||
return Object.assign(Object.assign({}, prev), jsdoc.getTags().reduce((p, v) => (v ? Object.assign(Object.assign({}, p), { [v.getTagName()]: v.getComment() }) : p), {})); | ||
return Object.assign(Object.assign({}, prev), jsdoc.getTags().reduce((p, v) => (v.getKind() === ts_morph_1.ts.SyntaxKind.JSDocTag ? Object.assign(Object.assign({}, p), { [v.getTagName()]: v.getComment() }) : p), {})); | ||
}, {}); | ||
@@ -220,0 +220,0 @@ } |
{ | ||
"name": "@hoth/typescript-to-json-schema", | ||
"version": "1.0.24", | ||
"version": "1.0.25", | ||
"description": "typescript to json-schema transpiler", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
37857