Storybook:从打字稿自动生成文档
Storybook: auto generate docs from typescript
目前我正在使用react-docgen-typescript-loader
自动生成文档
过去 30 天的下载量:1.2m
但是这个插件不再被支持和归档:https://github.com/strothj/react-docgen-typescript-loader
也不适用于 typescript ^4.3
(https://github.com/styleguidist/react-docgen-typescript/issues/356),因为加载程序使用旧版本的 react-docgen-typescript
有没有其他方法可以从 TS 自动生成文档?
实际上,删除react-docgen-typescript-loader
和使用react-docgen-typescript
后我没有发现任何区别
https://storybook.js.org/docs/ember/configure/typescript#mainjs-configuration
// .storybook/main.js
module.exports = {
typescript: {
check: false,
checkOptions: {},
reactDocgen: 'react-docgen-typescript',
reactDocgenTypescriptOptions: {
shouldExtractLiteralValuesFromEnum: true,
propFilter: (prop) => (prop.parent ? !/node_modules/.test(prop.parent.fileName) : true),
},
},
};
目前我正在使用react-docgen-typescript-loader
自动生成文档
过去 30 天的下载量:1.2m
但是这个插件不再被支持和归档:https://github.com/strothj/react-docgen-typescript-loader
也不适用于 typescript ^4.3
(https://github.com/styleguidist/react-docgen-typescript/issues/356),因为加载程序使用旧版本的 react-docgen-typescript
有没有其他方法可以从 TS 自动生成文档?
实际上,删除react-docgen-typescript-loader
和使用react-docgen-typescript
https://storybook.js.org/docs/ember/configure/typescript#mainjs-configuration
// .storybook/main.js
module.exports = {
typescript: {
check: false,
checkOptions: {},
reactDocgen: 'react-docgen-typescript',
reactDocgenTypescriptOptions: {
shouldExtractLiteralValuesFromEnum: true,
propFilter: (prop) => (prop.parent ? !/node_modules/.test(prop.parent.fileName) : true),
},
},
};