- Tags must now contain whitespace after the tag name to be parsed as a tag,
@jest/globals
in a comment will no longer be parsed as a tag #1990. - The private member visibility option will now be respected in generated sites, #1992.
- Overload rendering will no longer be broken if JavaScript is disabled, #453.
- All overloads are now shown at once rather than requiring clicks to see the documentation for each signature, #1100.
- Improved support for
--entryPointStrategy Packages
. TypeDoc will now load package-specific configurations frompackage.json
typedoc
field. This configuration allows configuring a custom display name (typedoc.displayName
) field, entry point (typedoc.entryPoint
- this is equivalent and will overridetypedocMain
), and path to a readme file to be rendered at the top of the package page (typedoc.readmeFile
), #1658. - The
--includeVersion
option will now be respected by--entryPointStrategy Packages
. Also, for this combination, missingversion
field in the rootpackage.json
will not issue a warning. - The
navigation
partial will now call the newsettings
,primaryNavigation
, andsecondaryNavigation
partials, #1987.
- All warnings will be reported instead of only the first warning of a given type, #1981.
- Include references will no longer be incorrectly parsed as links, #1986.
- The generated schema.json on the website will now use enum values rather than enum names if possible.
- @akphi
- @zamiell
- The
DEBUG_SEARCH_WEIGHTS
global variable can now be set onwindow
to add search scoring information in the search results. - TypeDoc's icons are now available on
DefaultThemeRenderContext.icons
for use/modification by themes.
- TypeDoc no longer ignores project references if
--entryPointStrategy Packages
is set, #1976. - Boost computations are now done when creating the search index, resulting in a smaller
search.js
generated file.
- The
--exclude
option will now be respected by--entryPointStrategy Packages
and can be used to exclude package directories, #1959. - TypeDoc now emits an
IndexEvent
on theRenderer
when preparing the search index, #1953. - Added new
--searchInComments
option to include comment text in the search index, #1553. Turning this option on will increase the size of your search index, potentially by an order of magnitude.
- Function properties in type space will no longer be interpreted as methods, #1637.
- TypeDoc will no longer crash if a comment contains an empty
@example
tag, #1967. - TypeDoc will now detect attempted inheritance from accessors and inherit from the getter or setter, #1968.
intentionallyNotExported
will now properly respect qualified names, #1972.- Fixed missing namespace comments on
export * as NS
declarations, #1973. - Fixed missing comments on
export const x = () => 123
function variables, #1973. - Exported variable functions with properties will now be converted as a function+namespace instead of a variable+namespace, #1651.
- Validation warnings caused by missing documentation will now be formatted like other warnings which reference a declaration.
- TypeDoc will no longer warn if both the
get
andset
signatures of an accessor have a comment.
- Added
--htmlLang
option to set thelang
attribute in the generated HTML. Defaults toen
, #1951. - Added
--basePath
option to override TypeDoc's detected root directory, #1924. - Added support for TypeDoc specific
:getter
and:setter
meaning keywords in declaration references. - Warnings caused by comment contents will now do a better job of including the location of the text that caused the warning.
- Module comments will no longer be inappropriately attached to signatures, #1962.
- Projects with a single entry point will now parse
@module
comments in the entry point, #1963. - Removed duplicate "in comment" warning when parsing comments, #1964.
- Reflections with a boost of
<= 0
due tosearchCategoryBoosts
orsearchGroupBoosts
will be excluded from search.
- If a declaration has multiple comments associated with it, the last one should be used, #1961.
- Node 12 is no longer officially supported as it has gone end of life as of 2022-04-30. It might still work, but may stop working at any time.
- Dropped support for TypeScript before 4.6.
{@link}
tags in comments will now be resolved as declaration references similar to TSDoc's declaration references. For most cases, this will just work. See the documentation for details on how link resolution works.- TypeDoc will now produce warnings for bracketed links (
[[ target ]]
). Use{@link target}
instead. The{@link}
syntax will be recognized by TypeScript 4.3 and later and used to provide better intellisense. TypeDoc version 0.24.0 will remove support for[[ target ]]
style links. extends
in typedoc.json is now resolved using NodeJS module resolution, so a local path must begin with./
.- In the JSON output for
DeclarationReflection
s,getSignature
is no longer a one-tuple. - In the JSON output for
DeclarationReflection
s,setSignature
is no longer a one-tuple. - In the JSON output for
DeclarationReflection
s,typeParameter
has been renamed totypeParameters
- The
searchGroupBoosts
option must now be given the rendered group name rather than reflection kind names, and can be given custom group names. @inheritDoc
now follows the behavior specified by TSDoc when copying comments with a reference.- The
gaSite
option has been removed since Google Analytics now infers the site automatically, updated Google Analytics script to latest version, #1846. - The
hideLegend
option has been removed as the default theme no longer contains a legend. - Comments on export declarations will only overrides comments for references and namespaces, #1901.
- The deprecated
listInvalidSymbolLinks
option has been removed. Usevalidation.invalidLink
instead. - The deprecated
true
andfalse
values have been removed from--emit
, to migrate replacetrue
with"both"
andfalse
with"docs"
(the default). - Links are no longer be resolved against a global list of all symbols. See the documentation for details on link resolution.
- The
validation.invalidLink
option is now on by default. reflection.decorates
,reflection.decorators
, and their corresponding interfaces have been removed as no code in TypeDoc used them.- The shape of the
Comment
class has changed significantly to support multiple tag kinds. - Listeners to
Converter.EVENT_CREATE_TYPE_PARAMETER
andConverter.EVENT_CREATE_DECLARATION
will now never be passed ats.Node
as their third argument. - Constant variables which are interpreted as functions will no longer have the
ReflectionFlag.Const
flag set. reflection.defaultValue
is no longer set for enum members. The same information is available onreflection.type
with more precision.- Removed deprecated
removeReaderByName
,addDeclarations
andremoveDeclarationByName
methods onOptions
. - Removed
ProjectReflection.directory
, it was unused by TypeDoc and not properly tested. - Removed
ProjectReflection.files
, this was an internal cache that should not have been exposed, and shouldn't have existed in the first place, since removing it made TypeDoc faster. - Removed
ReflectionGroup.kind
since groups can now be created with the@group
tag. - Removed
ReflectionKind.Event
, the@event
tag is now an alias for@group Events
. Note: This changes the value ofReflectionKind.Reference
from16777216
to8388608
. - Themes are now set on the document element rather than on body, #1706.
-
TypeDoc now supports the
@group
tag to group reflections in a page. If no@group
tag is specified, reflections will be grouped according to their kind, #1652. -
TypeDoc will now search for
typedoc.js(on)
in the.config
folder in the current working directory. -
Entry point strategies
Resolve
andExpand
may now specify globs, #1926. -
typedoc.json
now supports comments liketsconfig.json
. -
TypeDoc will now read the
blockTags
,inlineTags
, andmodifierTags
out oftsdoc.json
in the same directory astsconfig.json
if it exists. It is recommended to add"extends": ["typedoc/tsdoc.json"]
, which defines TypeDoc specific tags to yourtsdoc.json
if you create one. -
If an exported symbol has multiple declarations, TypeDoc will now check all appropriate declarations for comments, and warn if more than one declaration contains a comment, #1855.
-
Improved support for JSDoc style
@example
tags. If the tag content does not include a code block, TypeDoc now follows VSCode's behavior of treating the entire block as a code block, #135. -
TypeDoc will now render members marked with
@deprecated
with a line through their name, #1381. -
Added new
commentStyle
option which can be used to control what comments TypeDoc will parse.Value Behavior JSDoc Use block comments starting with /**
Block Use all block comments Line Use //
commentsAll Use both block and line comments -
TypeDoc will now warn if part of a comment will be overwritten due to use of
@inheritDoc
instead of silently dropping part of the comment. -
Added support for inline
@inheritDoc
tags, #1480. -
It is now possible to link directly to a specific overload, #1326.
-
The JSON output will now include URLs to the file on the remote repository if possible.
-
Added a new
visibilityFilters
option which controls the available filters on a page. -
TypeDoc will now try to place block elements on a new line in HTML output, resulting in less overwhelming diffs when rebuilding docs, #1923.
-
Added
blockTags
,inlineTags
,modifierTags
to control which tags TypeDoc will allow when parsing comments. If a tag not in in one of these options is encountered, TypeDoc will produce a warning and use context clues to determine how to parse the tag.
- Fixed off by one error in warnings for types referenced but not included in the documentation.
- TypeDoc will no longer render a
Type Parameters
heading if there are no type parameters in some cases. - Improved source location detection for constructors.
- Improved comment discovery on destructured exported functions, #1770.
- Links which refer to members within a reference reflection will now correctly resolve to the referenced reflection's member, #1770.
- Correctly detect optional parameters in JavaScript projects using JSDoc, #1804.
- Fixed identical anchor links for reflections with the same name, #1845.
- TypeDoc will now automatically inherit documentation from classes
implements
by other interfaces/classes. - Fixed
@inheritDoc
on accessors, #1927. - JS exports defined as
exports.foo = ...
will now be converted as variables rather than properties. searchCategoryBoosts
are now correctly computed for all categories, #1960.- The
excludeNotDocumented
option will no longer hide a module if it has a documentation comment, #1948. - Prevent
--excludeNotDocumented
from hiding properties of type literals (a
infunction fn(p: { a: string })
), #1752. - Allow
cts
andmts
extensions in packages resolution mode, #1952. - Corrected schema generation for https://typedoc.org/schema.json
- @aqumus
- @fb55
- @futurGH
- @Shane4368
- @shmax
- Relaxed restrictions on
@enum
style enums to also permit non-literal strings and numbers, #1956.
searchGroupBoosts
was only computing the boost for the first reflection in a group, #1958.
- @shmax
- @Zamiell
- Added support for documenting a module's global declarations as its exports if it contains no real exports.
- Restore support for TS 4.0 through 4.5, #1945.
- Added support for TypeScript 4.7, #1935.
- Support enum-like objects with numeric literal values tagged with
@enum
, #1918. - Enum member reflections will now have their
type
set to either aLiteralType
with a string or numeric value or anIntrinsicType
with typenumber
, #1942. UsingdefaultValue
onEnumMember
reflections is now deprecated, and will be broken in 0.23.
- Fixed invalid type output in some uncommon edge cases, TypeDoc also now renders fewer superfluous parenthesis when creating types.
- TypeDoc is now more consistent about ordering with
enum-value-ascending
orenum-value-descending
sort strategies in mixed string/number enums.
- @ejuda
- @Zamiell
- Classes which are
abstract
and enums which areconst
will now be indicated in their rendered documentation, #1874. - Added a new option
compilerOptions
, which can be used to override compiler options read fromtsconfig.json
, #1891. - Added new render hooks:
content.begin
,content.end
,navigation.begin
,navigation.end
- TypeDoc will now warn if a project name/version cannot be inferred from a package.json file rather than using
undefined
, #1907.
- @ejuda
- @matteobruni
- @schlusslicht
- Fixed missing comments on
@enum
style enum members defined in declaration files, #1880. - Fixed
--validation.notDocumented
warnings for functions/methods/type aliases, #1895, #1898. - Search results will no longer include random items when the search bar is empty, #1881.
- Comments on overloaded constructors will now be detected in the same way that overloaded functions/methods are.
- Fixed
removeReflection
not completely removing reflections from the project, #1898. - Fixed
@hidden
/@ignore
/@exclude
comments on default exports with no associated variable, #1903. makeRecursiveVisitor
will now correctly call theintersection
callback, #1910.
- @nlepage
- @ychan167
- Add support for TypeScript 4.6, #1877.
- Support copying
@param
comments for nested members that target union and intersection types, #1876.
- Fixed validation for
--requiredToBeDocumented
option, #1872. - Fixed missing
this
parameters in documentation for some functions, #1875.
- Added
--validation.notDocumented
option to warn on items that are not documented, #1817.
- Fixed
const
variables not properly marked asconst
, #1866.
- @albyrock87
- @Nokel81
- Added new
cname
option for GitHub Pages custom domain support, #1803. ReferenceType
s which reference an external symbol will now includequalifiedName
andpackage
in their serialized JSON.- Added clickable anchor link for member titles, #1842.
- Fixed line height of
h1
andh2
elements being too low, #1796. - Code blocks in the light theme will no longer have the same background as the rest of the page, #1836.
- Symbol names passed to
addUnknownSymbolResolver
will now be correctly given the qualified name to the symbol being referenced, #1832. - The search index will now be written as JSON, reducing load times for large projects, #1825.
- @adeniszczyc
- @dragomirtitian
- @matteobruni
- @srmagura
- @stefanobaghino-da
- Added support for TypeScript 4.5, #1798.
- If file exports a symbol both under it's real name and as
default
, thedefault
export will now always be the renamed symbol, #1795. - TypeDoc will no longer crash if a symbol is defined both as a normal class (and optional interface) and as a property, as is used for global Node types in older
@types/node
versions, Gerrit0/typedoc-plugin-missing-exports#5.
- TypeDoc will now detect and warn if multiple instances of the package are loaded. This usually means that a plugin has its own version of TypeDoc installed, which will lead to things breaking in unexpected ways. It will only work if both loaded TypeDocs are v0.22.9 or later.
- TypeDoc will now automatically load packages with
typedoc-theme
in their keywords. Plugins which define a custom theme should include this keyword so that they can be automatically collected and displayed at https://typedoc.org/guides/themes/.
- Corrected HTML generation for projects using Google Analytics, #1786.
- Ensured that the
<meta charset="utf-8" />
appears within the first 1024 bytes of generated pages, #1783.
- @RunDevelopment
- Added hooks which can be used to inject HTML without completely replacing a template, #1773. See the documentation in custom-themes.md for details.
- Actually fixed
@category
tag incorrectly appearing on function types if used on a type alias, #1745. - Fix error in console when a page contains no documentation items.
- @RunDevelopment
- @srmagura
- Added support for GitHub enterprise projects with a
githubprivate.com
domain, #1743. - Added support for GitLab repositories, #1728.
- Replaced O(n^2) with O(1) implementation for determining unique IDs in a rendered page, #1755.
- Fixed crash with when running in very large repositories, #1744.
- Fixed visible gap after footer in dark mode if
hideGenerator
is set, #1749. - Fixed
@category
tag incorrectly appearing on function types if used on a type alias, #1745. - Fixed incorrect JS to apply themes on page load, #1709 (again).
- Accessors and index signatures are now properly marked as inherited on declaration creation, #1742.
- @nlfurniss
- @RunDevelopment
- @srmagura
- Added support for displaying identifiers & property access expressions in initializers, #1730.
- Expanded support for variables tagged with
@enum
to all variables whose property types are string literals, #1740.
- Fixed flash when navigating to a second page when OS theme does not match selected theme, #1709.
- Fixed improper quoting of
as const
style enums, #1727. - Fixed handling of
@typeParam
on type aliases, #1733. - Fixed handling of comment tags on function type aliases, #1734.
- Paths in warnings about non-exported symbols are now consistently displayed across platforms, #1738.
- @capraynor
- @srmagura
- TypeDoc will now recognize
@param
comments for destructured parameters and rename__namedParameters
to the name specified in the@param
comment if the number of@param
comments match the number of parameters, resolves #1703. - The
intentionallyNotExported
option may now include file names/paths to limit its scope, for example, the following will suppress warnings fromFoo
insrc/foo.ts
not being exported, but will not suppress warnings if anotherFoo
declared insrc/utils/foo.ts
is not exported.{ "intentionallyNotExported": ["src/foo.ts:Foo"] }
- The
--emit
option can now be used to more finely control what TypeDoc will emit.Value Behavior both
Emit both documentation and JS. docs
Emit documentation, but not JS (default). none
Emit nothing, just convert and run validation. true
Alias for both
, for backwards compatibility. Will be removed in 0.23.false
Alias for docs
, for backwards compatibility. Will be removed in 0.23.
- TypeDoc will now only create one highlighter for rendering code, saving ~200-500ms for rendering time.
- For compatibility with JSDoc, TypeDoc will now strip
<caption>
elements from@example
tags, resolves #1679. - TypeScript's
emitDeclarationOnly
compiler option is now supported, resolves #1716. - Fixed discovery of tsconfig.json when the provided path ends in
.json
, resolves #1712. - Fixed a crash when converting the
globalThis
namespace, could only be caused by a plugin.
- @Gudahtt
- @mgred
- @schlusslicht
- @srmagura
- Flag option types like
validation
can now be set to true/false to enable/disable all flags within them. - Source code links now work with Bitbucket repositories, resolves #1615.
- Added
githubPages
option (default: true), which will create a.nojekyll
page in the generated output, resolves #1680. MarkdownEvent
is now exported, resolves #1696.
- Fixed the hamburger menu not being visible on mobile devices, fixes #1699.
- Comments on function implementations with overloaded signatures will now be correctly handled, fixes #1697.
- @srmagura
- Switched the default highlighting themes back to
light-plus
anddark-plus
, they were accidentally set tomin-light
andmin-dark
in v0.22.0.
- Added new
validation
option which can be used to disable checks for non-exported symbols. On the command line, this can be specified with--validation.notExported true
, or in an options file with:{ "validation": { "notExported": true } }
- Added invalidLink to
validation
option, deprecatedlistInvalidSymbolLinks
, which will be removed in 0.23.
- Fix background color of tables in dark mode, closes #1684.
- Validation for non-exported symbols will now only produce one warning per symbol, instead of one warning per reference.
- Syntax highlighting when the preferred color scheme is dark but dark theme is not explicitly selected will now properly use the dark highlighting theme.
- The
packages
andentryPoints
options have been combined. To migrate configurations which usedpackages
, replacepackages
withentryPoints
and setentryPointStrategy
topackages
. - Renamed
disableOutputCheck
tocleanOutputDir
to more clearly reflect its behavior. - The
highlightTheme
option has been split intolightHighlightTheme
anddarkHighlightTheme
. - Removed poorly documented / poorly behaved
toc
option. - HTML output is now rendered with JSX instead of Handlebars, closes #1631.
This change provides major performance benefits, reducing rendering time by up to 10x for several benchmarked projects.
It also allows themes to be easily type checked, preventing mistakes when creating custom themes.
Removing Handlebars also fixed memory leaks when
--watch
was specified due to Handlebar's caching mechanism. This change breaks all existing custom themes, so a theme created for v0.21 or earlier will not work in v0.22. See internal-docs/custom-themes.md for documentation on how to create a custom theme in v0.22. - Removed the minimal theme that has been mostly broken for a long time.
- Changed the default
entryPointStrategy
fromexpand
toresolve
. - Paths in config files will now be resolved relative to the config file instead of relative to the current working directory.
- Exclude patterns are now checked against files instead of against each part of the path as traversed, #1399.
This means that an exclude of
**/someDir
will not exclude files in that directory. To exclude files in a directory, specify**/someDir/**
.
- Added support for light/dark mode to the default theme, closes #1641.
- Added support for custom CSS with the new
customCss
option, closes #1060. - Added support for linking to third party documentation sites, closes #131. See internal-docs/third-party-symbols.md for documentation on how to create a plugin which enables this. Support for linking to MDN for global types is provided by typedoc-plugin-mdn-links.
- Added
entryPointStrategy
to reduce confusion from new TypeDoc users on handling of entry points. There are three possible options:Option Behavior resolve (default) Expects all entry points to be contained within the root level tsconfig project. If a directory is given, includes <directory>/index
as the entry point.expand Expects all entry points to be contained within the root level tsconfig project. If a directory is given, files within it are recursively expanded. This was the default behavior in v0.21. packages Corresponds to --packages
in v0.21, behaves as documented in the Monorepo section in the readme. - Added support for
typedocMain
in package.json when using thepackages
strategy for resolving entry points. - Produce warnings when documentation is missing exports, closes #1653. If using TypeDoc's API, this behavior is available through calling
application.validate(project)
. - Added support for detecting "
as const
enums", closes #1675. - Added
hideLegend
option, closes #1108. - Added performance measurements to debug logging (
--logLevel Verbose
) - String literal indexed access types will create links to their referencing member if possible, closes #1226.
- Support inclusion patterns when expanding input files, closes #1399.
- Arrow keys can no longer select hidden search results.
- The Legend header will no longer be included if there is nothing in the legend.
- If a non-function uses
@param
, the name will not be dropped when rendering, closes #1410.
- TypeDoc now specifies the
"export"
key inpackage.json
, preventing plugins from importing internal paths. TypeDoc should now export all necessary structures (potentially marked with@internal
if likely to change) from the root export. - The
ReflectionKind
values forProject
,Module
,Namespace
, andEnum
have changed. - Removed deprecated logger functions.
- Dropped support for legacy plugins which use
export=
. Plugins are now required to export aload
function. - Remove
TypeParameterType
, references to type parameters have produced aReferenceType
since v0.20.0. - Types no longer have a
clone
method. It inconsistently performed deep or shallow clones, and was not used by TypeDoc. - Types no longer contain an
equals
method. It was occasionally correct for medium-complexity types, and always incorrect for more complicated types.
- @cspotcode
- @itsjamie
- Support highlighting language aliases (#1673), closes #1672
- @StoneCypher
- Upgrade Shiki to 0.9.8, adds support for several new highlighting languages
- @StoneCypher
- Support for TypeScript 4.4, closes #1664
- Add support for NO_COLOR environment variable (#1650)
- Handle undefined symbols in query types, closes #1660
- @krisztianb
- Support Node v12.10 (#1632), closes #1628
- Implicitly set noEmit unless --emit is provided, closes #1639
- @betaorbust
- Constructors did not have source information set, closes #1626
- Options may not be set once conversion starts. Enables a small perf improvement.
- Improve detection for "property methods" to convert as methods, closes #1624
- Two members differing only by case produced broken links, closes #1585
- Resolve some memory leaks
- @cspotcode
- Postpone resolution of inherited classes until their parents have been resolved, closes #1580
- Exclude empty modules from documentation, closes #1607
readme
could not be set tonone
in a config file, closes #1608- Correctly handle minimatch excludes on Windows, closes #1610
- Drop support for Node v10
- Plugins are now passed Application directly
- Drop support for TypeScript 3.9
- Improve monorepos by adding support for TS entry points (#1596)
- Support for monorepos
- Support for TypeScript 4.3
- Add support for sorting reflections based on user criteria, closes #112
- Add the --treatWarningsAsErrors option, closes #1568
- The exclude option will now remove symbols re-exported from excluded files, closes #1578
- Correctly handle comments on function type aliases, closes #799
- Setters should always have a
void
return type, closes #1215 - Resolve paths in option files according to the config directory, closes #1598, #1442
- Pick up doc comments for properties declared within a class's constructor, closes #1255
- Inherit comments from parent methods, closes #1580
- Correct handling for intentionally broken references
- Inheritance from multiple Partial types was incorrectly converted, closes #1579
- efokschaner
- Martin
- Add disableAliases option (#1576), closes #1571
- Pin
marked
dependency to 2.0.x (#1602), closes #1601
- Martin
- Nick
- use 'pretty' option when generating json
- create 'pretty' option
- Always write to stdout, even if redirected, closes #1566
- Create directories when writing JSON output
- cAttte
- Include debugging information in highlighting error messages (#1561)
- Relax simple expression requirements for default values, closes #1552
- Handle #private getters + methods, closes #1564
- Masato Makino
- Crash when converting recursive type alias, closes #1547
- Discover module comments for global files, closes #1549
- Detect references when export * is used, closes #1551
- Static properties of Error class incorrectly converted, closes #1541, #572
- Correct crash with reflection types, closes #1538
- readonly tuples were recognized as arrays, closes #1534
- Constructors were improperly reported as inherited, closes #1528, #1527
- Vladimir Ivakin
- Categories should only appear once if specified multiple times, closes #1522
- Support JSDocNullableType, JSDocNonNullableType, closes #1524
- Remove undefined from optional property types, closes #1525
- Support for TypeScript 4.2, closes #1517
- Detect visibility modifiers on accessors, closes #1516
- preserve spaces in code blocks
- Detect and normalize unique symbol names, closes #1514
- michaelf
- Pick up optional/readonly from mapped types, closes #1509
- Support for specifying comments on export declarations, closes #1504
- add support for non .com gh enterprise domains (#1507)
- TUNER88
- Missing namespace members when ns is created by re-exporting an entire module, closes #1499
- Set inheritedFrom on accessor signatures, closes #1497, #1498
- Siddharth VP
- Import from shiki rather than shiki-themes, closes #1496
- Missing exported members in file-as-namespace reflection, closes #1493
- add highlight theme option
- Missing comments on optional methods, closes #1490
- Avoid crash with removed project reflection, closes #1489
- function-namespaces were converted incorrectly, closes #1483
- add validation to highlightTheme option
- Matthias Law
- Support for --watch, --preserveWatchOutput, --emit
- Static methods added to the class manually in JS, closes #1481
- Add support for copying item’s documentation by copying it from another API item
- CommonJS export= with type exports, closes #1476
- dergash
- Comments on projects were broken
- Constructors were a bit broken
- Support for excludeInternal, closes #1469
- add option to read more categories from doc
- Crash when converting
@types/ws
, closes #1463 - replace return with continue
- excludeNotDocumented incorrectly ignored some symbols, closes #1465
- Support for JSDoc
@enum
tags, closes #1464
- Bruno Zorić
- Crash with destructured export const, closes #1462
- Add support for optional types, closes #1312
- Add support for rest types, closes #1457
- Avoid using process.exit (#1461)
- Krisztián Balla
- Use type nodes if converting a regular function, closes #1454
- Arrow methods did not have modifiers set properly, closes #1452
- Add support for import types, closes #1453
- Don't document type arguments if there are none (#1451)
- Krisztián Balla
- Crash when converting a generic with a tuple constraint, closes #1449
- Errors due to bad options in tsconfig file were dropped, closes #1444
- Regression caused by 1886304f327da5642097834feac0387fd1b78b6e
- Parameter declarations might not exist, closes #1443
- CLI should not exit cleanly on unexpected error
- Tuples could cause a crash
- Support for JSDoc types, closes #1214, #1437
- Properly resolve type parameters, closes #1438
- Functions might not have a parent in global files, closes #1436
- --excludeNotDocumented didn't remove reflections, closes #1435
- Improved support for global files, closes #1424
- Better detection for declaration files defining a module
- Negative literal types were converted incorrectly, closes #1427
- ArgumentsReader should warn if missing a value, closes #1429
- TS 3 converters for null, this types
- Literal boolean converter in TS 3
- Map bash, sh, shell to shellscript when highlighting, closes #1432
- Initializers should only be included if "simple", closes #1288, #1224, #764
- Remove EVENT_FUNCTION_IMPLEMENTATION
- Switch to Shiki for syntax highlighting
- Unify several inconsistent methods, closes #1403
- Remove EVENT_FILE_BEGIN
- TypeDoc no longer accepts TS options
- Remove "mode" option
- Remove ignoreCompilerErrors option
- new option "markedOptions" (#1412)
- Initial attempt at support for project references
- Colors in console output
- Options may specify a validation function (#1398)
- Support for
@module
tag - Support for TS 4.1 mapped types + string literal types, closes #1397
- Add logLevel option
- Partial support for global files
- Automatically generate schema for typedoc.json
- Switch back to search.js, closes #1339
- Support for the remaining literal types
- Support for mapped types
- Mostly working library mode
- ConstructorType node support
- Reintroduce support for index signatures
- Categorization was broken with a single entry point
- Normalize unions, closes #571
- Somehow didn't save a file
- Missing comments on variable functions, closes #1421
- Resolve type parameters in concrete subclasses
- Use entryPoints to search for readme
- Only create extra programs when dealing with solution style tsconfig.json files
- A typo in description of DefaultTheme.getMapping (#1416)
- Correct handling of arrays in generic constraints, closes #1408
- Type converters threw on older TS versions
- Accessor with a set signature was converted incorrectly
- Declaration merged namespaces sometimes produced multiple reflections
- TypeDoc should warn users about missing entry points
- isExternal flag wasn't set properly
- JSON schema had incorrect value types, closes #1389
- Hidden module-namespaces, closes #1396
- Some issues with inheritance
- We pick up all properties now
- Support for specify a directory as an entry point
- Lint
- Array types were converted incorrectly
- Change target back to ES2018
- Missing default exports
- Fix bug in ReferenceType equality check, closes #1383
- fixes #1383, closes #1383
- Reference types should always be given resolved symbols
- Rendering works again
- A few of the issues with the type converter
- Denis Sikuler
- Krisztián Balla
- Soc Sieng
- Export declarations within namespaces weren't detected, closes #1366
- Re-introduce support for TS 3.9, closes #1362
- Constantine Dergachev
- Support for named tuples, closes #1357
- Upgrade to TS 4.0
- Support for defaulted type parameters
- Check for missing declarations, closes #1329
- Add converter for parenthesized type nodes, closes #1346
- Support for type operators
readonly
&unique
- Address typo in log statement
- Eric ZHANG
- Krisztián Balla
- MathBunny
- Bump minimum node version to 10
- Improve support for type aliases, closes #1330
- Examples don't run (#1327)
- Use
baseUrl
to determine file paths (#1313), closes #1294 - Support resolveJsonModule, closes #1323
- Do not ignore the properties of object type literals (#1308)
- GithubPlugin: read correct remote when multiple github repos exist
- Only set inputFiles from tsconfig if not already set, closes #1263
- Options.isDefault was always false when passed non-literals., closes #1263
- Brandon Istenes
- Chris Thielen
- Nickolay Platonov
- TheBrokenRail
- Any plugins which referenced ReflectionKind.ExternalModule or ReflectionKind.Module need to be updated to reference ReflectionKind.Module and ReflectionKind.Namespace respectively., closes #109
createMinimatch
is no longer a public function.
- Allow every possible number as a defaultValue for a number option (#1296), closes #1291
- Number options may require min and max values (#1278)
- Add detecting read-only properties (#1268)
- Remove Result object, closes #1238
- Generate search index before rendering theme (#1252)
- Support for
@template
, closes #860 - Support for private fields
- Move TypeScript to a peer dependency, closes #880
- Support disabling sources, closes #808
- Allow user to set git remote, closes #1130
- Only generate legend for items that are displayed on the page (#1187), closes #1136
- copy inherited parameter descriptions (#1303), closes #787
- TypeDoc fails to resolve @types packages outside of cwd, closes #1300
- Trim whitespace when parsing links, closes #1302
- Module declaration parsed as namespace (#1301), closes #1284
- Correct prepublish script
- Do not silently swallow missing include/media file errors (#1277)
- Fix extends option in tsconfig.json doesn't work (#1273), closes #1272
- Improve output for object's computed property names (#1275)
- Enable lax overloads only in release
- Map type options should not have their default value validated (#1250)
- Empty legend on most pages
- Pin marked to 0.8.0, closes #1240
- Report errors from setting bad options on CLI, closes #1237
- Missed a test configuration update
- Rename external modules to modules, closes #109
- Check for compiler errors before converting
- Moved @types/minimatch dependency to devDependencies (#1206)
- Plugin resolution for relative paths (#1194), closes #1188
- Alexander Cerutti
- Krisztián Balla
- Martin
- Nickolay Platonov
- Radics Laszlo
- Sergei Grishchenko
- Soc Sieng
- Stephan Bijzitter
- William Johnes
- Add support for `` inside of Marked Link Brackets (#1091)
- Support for extended config in typedoc.json, closes #493, #1115
- Config option to exclude not explicitly documented symbols (#996), closes #995
- Support code blocks with four spaces, closes #1218
- Ensure child comment tags get set (#1221)
- Re-export TypeScript namespace (#1217), closes #1213
- Logger extensions now also count the warnings (#1210)
- Adam Epling
- Emily Marigold Klassen
- Khải
- Nickolay Platonov
- Richie Bendall
- Robin Stevens
- Allow excluding tags from comments, closes #815
- Count warnings (#1205)
- Remove tags containing redundant type info, closes #1198
- Don't remove braces containing a tag, closes #1001
- Mixin symbols might not have declarations (#1208)
- Raynor Chen
- Robin Stevens
- Zack Slayton
- use util.readFile everywhere to handle BOM issues
- Anton Golub
- Correctly handle export * from..., closes #1186
- Support for query types
- Add test for {} and fix generation
- Robin Stevens
- removeReflection does not fully remove reflections, closes #1176