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.
2 parents cfaec9e + d62b8d4 commit a2bfdadCopy full SHA for a2bfdad
README.md
@@ -66,6 +66,10 @@ TypeScript and JSDoc use a different syntax for imported types. This plugin conv
66
* @type {`static:${dynamic}`}
67
*/
68
69
+**@override annotations**
70
+
71
+are removed because they make JSDoc stop inheritance
72
73
### JSDoc
74
75
**Named export:**
index.js
@@ -298,6 +298,9 @@ exports.astNodeVisitor = {
298
'Class<$1>$2'
299
);
300
301
+ // Remove `@override` annotations to avoid JSDoc breaking the inheritance chain
302
+ comment.value = comment.value.replace(' @override', ' ');
303
304
// Convert `import("path/to/module").export` to
305
// `module:path/to/module~Name`
306
let importMatch, lastImportPath, replaceAttempt;
0 commit comments