Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@microsoft/tsdoc-config

microsoft10.3mMIT0.17.1TypeScript support: included

A loader for the tsdoc.json file

TypeScript, documentation, doc, comments, JSDoc, parser, standard

readme

@microsoft/tsdoc-config

TSDoc is a proposal to standardize the doc comments used in TypeScript source files. The main package @microsoft/tsdoc implements the TSDoc parser. The @microsoft/tsdoc-config package is an optional add-on for loading the tsdoc.json file format that enables users to define custom TSDoc tags. (This functionality was moved to its own package because it requires external dependencies such as NodeJS and ajv, whereas the main package is fully self-contained.)

For more information about TSDoc, please visit the project website:

https://tsdoc.org

Creating config files

The tsdoc.json file is optional. When used, it is expected to be found in the same folder as the tsconfig.json file for a project. The loader looks for it by walking upwards in the directory tree until it finds a folder containing tsconfig.json or package.json, and then it attempts to load tsdoc.json from that location.

The tsdoc.json file conforms to the tsdoc.schema.json JSON schema. It defines tags using similar fields as the TSDocTagDefinition API used by TSDocParser from @microsoft/tsdoc.

Here's a simple example:

tsdoc.json

{
  "$schema": "https://developer.microsoft.com/json-schemas/tsdoc/v0/tsdoc.schema.json",
  "tagDefinitions": [
    {
      "tagName": "@myTag",
      "syntaxKind": "modifier"
    }
  ]
}

If you want to define custom tags in one place and share them across multiple projects, the extends field specifies a list of paths that will be mixed in with the current file:

tsdoc.json

{
  "$schema": "https://developer.microsoft.com/json-schemas/tsdoc/v0/tsdoc.schema.json",
  "extends": [
    "my-package/dist/tsdoc-base.json",
    "./path/to/local/file/tsdoc-local.json"
  ]
}

NOTE: The extends paths are resolved using NodeJS module resolution, so local paths must begin with ./ to avoid being interpreted as an NPM package name.

API Usage

The code sample below illustrates how to invoke the @microsoft/tsdoc-config API to load a tsdoc.json file:

import * as path from 'path';
import { TSDocParser, TSDocConfiguration } from '@microsoft/tsdoc';
import { TSDocConfigFile } from '@microsoft/tsdoc-config';

// Sample source file to be parsed
const mySourceFile: string = 'my-project/src/example.ts';

// Load the nearest config file, for example `my-project/tsdoc.json`
const tsdocConfigFile: TSDocConfigFile = TSDocConfigFile.loadForFolder(path.dirname(mySourceFile));
if (tsdocConfigFile.hasErrors) {
  // Report any errors
  console.log(tsdocConfigFile.getErrorSummary());
}

// Use the TSDocConfigFile to configure the parser
const tsdocConfiguration: TSDocConfiguration = new TSDocConfiguration();
tsdocConfigFile.configureParser(tsdocConfiguration);
const tsdocParser: TSDocParser = new TSDocParser(tsdocConfiguration);

changelog

Change Log - @microsoft/tsdoc-config

This log was last generated on Sat, 23 Nov 2024 00:23:35 GMT and should not be manually modified.

0.17.1

Sat, 23 Nov 2024 00:23:35 GMT

Patches

  • Include CHANGELOG.md in published releases again

0.17.0

Tue, 28 May 2024 21:34:19 GMT

Minor changes

  • Minor package cleanup.

Patches

  • Upgrade dev toolchain (Heft, Webpack, TypeScript)

0.16.2

Wed, 14 Sep 2022 02:55:06 GMT

Version update only

0.16.1

Sat, 09 Apr 2022 02:28:41 GMT

Patches

  • Rename the "master" branch to "main."

0.16.0

Thu, 07 Apr 2022 22:51:07 GMT

Minor changes

  • Add supportedHtmlElements and reportUnsupportedHtmlElements configuration options

0.15.2

Tue, 20 Apr 2021 04:25:13 GMT

Patches

  • Improve reporting of tsdoc-config-unresolved-extends
  • Fix some issues with the logic for TSDocConfigFile.hasErrors and TSDocConfigFile.fileNotFound

0.15.1

Mon, 19 Apr 2021 21:22:32 GMT

Patches

  • Improve reporting of error messages when loading tsdoc.json

0.15.0

Fri, 16 Apr 2021 23:22:26 GMT

Minor changes

  • Add a new API TSDocConfigFile.loadFromObject()

0.14.0

Fri, 22 Jan 2021 18:07:19 GMT

Minor changes

  • Update tsdoc.json schema to add a new field "noStandardTags"
  • TSDocConfigFile.configureParser() now clears any previous state, and it only defines standard tags if "noStandardTags" is not true.
  • Added new API TSDocConfigFile.updateParser() which preserves the previous configuration state
  • Add new "supportForTags" field to tsdoc.json schema
  • Add new APIs: TSDocConfigFile.supportForTags, .clearTagDefinitions(), .addTagDefinition(), .clearSupportForTags(), .setSupportForTag(), .loadFromParser(), .saveFile(), .saveToObject()

0.13.9

Thu, 03 Dec 2020 08:07:55 GMT

Version update only

0.13.8

Thu, 03 Dec 2020 04:31:52 GMT

Version update only

0.13.7

Mon, 30 Nov 2020 06:16:21 GMT

Patches

  • Update documentation to reference the new website URL
  • Upgrade build tools and configuration

0.13.6

Fri, 04 Sep 2020 15:53:27 GMT

Patches

  • Update build system

0.13.5

Sun, 19 Jul 2020 01:22:35 GMT

Patches

  • Bump ajv dependency to ~6.12.3

0.13.4

Wed, 20 May 2020 22:33:27 GMT

Patches

  • Fix typo

0.13.3

Fri, 27 Mar 2020 23:14:53 GMT

Version update only

0.13.2

Sat, 22 Feb 2020 20:44:16 GMT

Version update only

0.13.1

Sat, 22 Feb 2020 02:55:07 GMT

Version update only

0.13.0

Tue, 21 Jan 2020 21:26:36 GMT

Minor changes

  • Improve tsdoc.json parser to allow JSON comments
  • Add a new API TSDocConfigFile.checkForModifiedFiles() to facilitate caching

0.12.16

Tue, 19 Nov 2019 22:01:56 GMT

Patches

  • Initial release