Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 compodoc 生成文档,我想从文档覆盖范围中排除一些文件/目录
我添加了 tsconfig.json 文件的 exclude 属性。
"exclude": [ "node_modules", "*.spec.ts", "./app/core-module/test" ]
这些文件很好地从文档中排除,但不在文档覆盖范围内。
请问有人有什么想法吗?
您好尝试添加单独的 tsconfig.compodoc.json
{ "include": [ "src/**/*" ], "exclude": [ "node_modules/", "projects/" ] }