@esydoc/resolver-config
v2.1.3
Published
> TODO: description
Downloads
33
Readme
@esydoc/resolver-config
一个解析 Api 源码生成配置的解析器
安装
npm i @esydoc/resolver-config -D
使用
- 在
esydoc.config.js
文件中的resolves
字段添加@esydoc/resolver-config
// for example in esydoc.config.js
{
apiConfigDefaultOutputPath: 'src/edoc-api-config',
resolves: {
'@esydoc/resolver-config': {
includes: [],
output: {
template: 'hyext-docs', // 固定使用这个模版
dist: './src/config', // 构建产物地址
},
pathPrefix: 'hyExt', // 接口前缀
renderConfigs: [
{
filePath: 'test.js',
render: (node) => 'test'
}
]
plugins: []
}
}
}