Neal Granger
Results
2
comments of
Neal Granger
I've added a test that reproduces this behavior here: https://github.com/vega/ts-json-schema-generator/commit/5773d322a13bf98fe2196edd374b6b408edd33b1
Here's a quick workaround. ```ts import { JSDocableNode, PropertyAssignment } from "ts-morph"; // HACK: Patch the PropertyAssignment class to add JSDoc support // https://github.com/dsherret/ts-morph/issues/1379 const properties = Object.getOwnPropertyDescriptors( JSDocableNode(PropertyAssignment as...