jsdoc-plugin-intersection

1.0.4 • Public • Published

NPM

JSDoc Intersection Plugin

Converts TypeScript intersection types (joined with an "&") to a jsDoc type union "|" allowing the file to be processed downstream. This allows you to use the amperstand "&" in your code.

Specifically, this creates a compatibility between Visual Studio Code's TypeScript documentation and JSDoc, as Visual Studio Code's parser uses amperstands for type unions, and JSDoc uses pipes.

Solving the Problem

Using JSDoc in Visual Studio code with their TypeScript-oriented intersection:

/**
 * This is my favorite function!
 * @param {SomeClass & {abc: 123}}
 */

Results in...

ERROR: Unable to parse a tag's type expression for source file ...: Invalid type expression "SomeClass & {abc: 123}": Expected "|" but "&" found.

Uh oh! JSDoc doesn't like this. It's a TypeScript thing and won't be supported.

Resolution

Thankfully, this JSDoc plugin solves the problem by converting your intersecting types to compatible JSDoc union types. There's no need to hack your code together with strange @typedefs.

Just Install

yarn add jsdoc-plugin-intersection --dev

or

npm install jsdoc-plugin-intersection --save-dev

Update your JSDoc configuration, and include the plugin:

...
    "plugins"[
        "jsdoc-plugin-intersection"
    ],
...

That's all!

/jsdoc-plugin-intersection/

    Package Sidebar

    Install

    npm i jsdoc-plugin-intersection

    Weekly Downloads

    3,676

    Version

    1.0.4

    License

    UNLICENSED

    Unpacked Size

    6.42 kB

    Total Files

    5

    Last publish

    Collaborators

    • chriseaton