react-docgen-typescript-loader
react-docgen-typescript-loader copied to clipboard
Webpack loader to generate docgen information from Typescript React components.
Hi, I'm using your loader in my project and I'm using JSS for styling. Everything works fine until I try to add styling to my component. For example, I have...
Proposed webpack configuration fails to build typescript. Random number of tsx files are reported with error TS1005: ';' expected. during storybok's build. This is my tsconfig: ``` { "compilerOptions": {...
I have performed a pretty standard integration of `react-docgen-typescript-loader` but it shows me all of the inherited props of the function as well. I was able to filter almost half...
I'm using the following setup: - React + ReactDOM 16.6.0 - Typescript 3.1.3 - Storybook.js 4.0.0-alpha.23 - styled-components 4.0.2 - types/styled-components 4.0.2 When I attempt to render a component in...
Hi I have react-docgen-typescript-webpack-plugin used in storybook webpack configuration. ``` const TSDocgenPlugin = require('react-docgen-typescript-webpack-plugin'); defaultConfig.plugins.push(new TSDocgenPlugin()); ``` How should I pass options with propFilter to that plugin so it can...