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

Hi guys, Receiving the strangest error today. I can't say what caused it, the only thing that has changed in our React Storybook project is a big upgrade to our...

So, I know this is a webpack plugin but, Do you know if there is an alternative or if someway we can use this plugin for a react-native project using...

**Note:** This may be an inherited limitation of react-docgen-typescript. Consider a project with the following files: ```jsx // MyComponent.tsx import { CommonProps } from './common'; export type MyComponentProps = CommonProps...

I have two repositories, one containing my storybook which loads a compiled version of another repository as a part of node_modules. The dependency is compiled to commonjs and generates a...

When organising your project as a monorepo (i.e. you have components _above_ your application for which you would like to collect prop information) you are likely to be met with...

I'm using react-docgen-typescript-loader with the following configurations. In Storybook props are shown only is there are propTypes defined, but in I do it on TypeScript as `interface Props {...}` in...

Hi. I want to run storybook over a dist/ directory which contain *.js and *.d.ts files previously built by tsc. There are no source files (*.ts) available at this stage,...

In my storybook documentation I have some components that are using others components, the docgen loader is generating prop documentation for all of them, however I'd like to document just...

Consider the following: ### Working, no union type ```export const Button = (props: ButtonProps) => { ... }``` ![image](https://user-images.githubusercontent.com/13420097/72181448-37aaa100-339e-11ea-9cfd-fe56d003afef.png) ### Broken when union type (&) used ``` export const Button...

hi, running into a small bug with sub types being inferred inline: ``` type SubType = { name: string; }; type Props = { children?: ReactNode; /** testing */ name:...