We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f7fbf4 commit 84465f9Copy full SHA for 84465f9
index.js
@@ -1,6 +1,8 @@
1
const path = require('path');
2
const fs = require('fs');
3
const env = require('jsdoc/env');
4
+const addInherited = require('jsdoc/augment').addInherited;
5
+const indexAll = require('jsdoc/borrow').indexAll;
6
7
const config = env.conf.typescript;
8
if (!config) {
@@ -214,3 +216,10 @@ exports.astNodeVisitor = {
214
216
}
215
217
218
};
219
+
220
+exports.handlers = {
221
+ parseComplete: function(e) {
222
+ // Build inheritance chain after adding @extends annotations
223
+ addInherited(e.doclets, indexAll(e.doclets));
224
+ }
225
+}
0 commit comments