react-docgen-typescript-loader icon indicating copy to clipboard operation
react-docgen-typescript-loader copied to clipboard

Webpack loader to generate docgen information from Typescript React components.

Results 55 react-docgen-typescript-loader issues
Sort by recently updated
recently updated
newest added
trafficstars

I've been using `react-docgen-typescript-loader` ever since `@storybook/addon-docs` came out. Recently whilst upgrading to the beta and eventually to the stable `5.3` i've experienced major performance issues where compile times are...

Storybook 5.2.8 + React + TypeScript, custom config (no CRA or Next). Interface: ```typescript import React from "react"; import { Button } from "@material-ui/core"; export interface HelloProps { /** *...

Read the docs and I see that I've done everything right. Have a typed functional component with named export and can see somehow a lot more entries in prop table...

Example code: ``` export type IPropsVariant = 'primary' | 'secondary' | undefined export type IPropsType = 'button' | 'submit' | 'reset' | undefined export interface IProps { id?: string; type?:...

The source of the issue in [this comment](https://github.com/storybookjs/storybook/issues/8114#issuecomment-548748861) in storybook repo. I have repeated the steps from [Storybook Docs Typescript Walkthrough](https://gist.github.com/shilman/bc9cbedb2a7efb5ec6710337cbd20c0c). Everything works fine, except for default exports. If there...

Hi! With 3.2.1 the default values were generated for most of the types. After upgrading to 3.3.0 all the default values are gone. My test cases are available here: https://github.com/storybookjs/storybook/blob/next/examples/cra-ts-kitchen-sink/src/stories/docgen-tests/types/ts-types.tsx#L93...

My component uses a config as `defaultProps` ```js const config = { color: 'primary' } MyComponent.defaultProps = { color: config.color } ``` When the doc is generated the default value...

This doesn't work ``` export class ExampleModule extends Component { componentDidMount() { this.props.initApp(); } render() { const { appName = 'app' } = this.props; return ( Hello!!11 {appName} ) }...

Proptable is not coming when I am using babel 7 to transpile the typescript file. Github [link](https://github.com/gmukul01/component-library-ts-boilerplate) for the code. ![image](https://user-images.githubusercontent.com/3636885/56646080-77105080-669c-11e9-9ec5-648857468965.png) My webpack config file for the storybook is like...

Changing the following: ``` -import * as React from 'react'; +import React from 'react'; ``` Seems to break `react-docgen-typescript-loader`'s ability to generate docgen for components in the file.