我对使用Typedoc感到很陌生,并且遇到抛出错误的麻烦。
当我在项目中运行Typedoc时,会正确生成该文档,但也会出现错误:
$ ./node_modules/.bin/typedoc --mode file --module commonjs --out ./docs/typescript --target es5 src/
Error: Could not parse /home/michael/workspace/test/node_modules/paralleljs/package.json
当我指定在src /上生成文档时,我不理解为什么Typedoc会查看node_modules /(两者处于同一级别)。
我还尝试用node_modules
或--exclude "**/node_modules/**/*"
排除--externalPattern "**/node_modules/**/*"
,但似乎无济于事。
如果有人可以帮助/解释我为什么这样做,我将不胜感激。