Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-docgen-typescript-plugin

Package Overview
Dependencies
Maintainers
1
Versions
57
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-docgen-typescript-plugin

A webpack plugin to inject react typescript docgen information.

  • 0.0.3-canary.1.516456a.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
366K
increased by12.89%
Maintainers
1
Weekly downloads
 
Created
Source

react-docgen-typescript-plugin

A webpack plugin to inject react typescript docgen information

Install

npm install --save-dev react-docgen-typescript-plugin
# or
yarn add -D react-docgen-typescript-plugin

Usage

const ReactDocgenTypescriptPlugin = require("react-docgen-typescript-plugin");

module.exports = {
  plugins: [
    new ReactDocgenTypescriptPlugin(),
    // or with a tsconfig
    new ReactDocgenTypescriptPlugin({ tsconfigPath: "./tsconfig.json" }),
    // or with options
    new ReactDocgenTypescriptPlugin({ jsx: ts.JsxEmit.Preserve }),
  ],
};

Options

This plugins support all parser options from react-docgen-typescript and all of the following options

OptionTypeDescriptionDefault
tsconfigPathstringSpecify the location of the tsconfig.json to use.null
compilerOptionsobjectSpecify compiler options. Cannot be used with tsconfigPathnull
docgenCollectionNamestring or nullSpecify the docgen collection name to use. All docgen information will be collected into this global object. Set to null to disable.STORYBOOK_REACT_CLASSES
setDisplayNamebooleanSet the components' display name. If you want to set display names yourself or are using another plugin to do this, you should disable this option.true
typePropNamestringSpecify the name of the property for docgen info prop type.type

Prior Art

  • sn-client - Inspired by this custom webpack plugin
  • react-docgen-typescript-loader - Webpack loader to generate docgen information from Typescript React components.

Keywords

FAQs

Package last updated on 10 Jun 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc