diff --git a/src/services/jsDoc.ts b/src/services/jsDoc.ts index 1b6f21ac640..d6af6add125 100644 --- a/src/services/jsDoc.ts +++ b/src/services/jsDoc.ts @@ -1,48 +1,83 @@ /* @internal */ namespace ts.JsDoc { const jsDocTagNames = [ + "abstract", + "access", + "alias", + "argument", + "async", "augments", "author", - "argument", "borrows", "callback", "class", + "classDesc", "constant", "constructor", "constructs", + "copyright", "default", "deprecated", "description", + "emits", + "enum", "event", "example", + "exports", "extends", + "external", "field", + "file", "fileOverview", + "fires", "function", + "generator", + "global", + "hideConstructor", + "host", "ignore", + "implements", "inheritDoc", "inner", + "instance", + "interface", + "kind", "lends", - "link", + "license", + "listens", + "member", "memberOf", "method", + "mixes", + "module", "name", "namespace", + "override", + "package", "param", "private", - "prop", "property", + "protected", "public", + "readonly", "requires", "returns", "see", "since", "static", + "summary", "template", + "this", "throws", + "todo", + "tutorial", "type", "typedef", - "version" + "var", + "variation", + "version", + "virtual", + "yields" ]; let jsDocTagNameCompletionEntries: CompletionEntry[]; let jsDocTagCompletionEntries: CompletionEntry[];