I have this project setup with typedoc and the npm script (npm run d
) used to work:
"d": "typedoc --out doc --exclude **/*.spec.ts ./projects/fs-is/src/lib"
I upgraded the project to Angular 12 (It uses the Angular Package Format) and now when typedoc is run it includes files from node_modules
and fails:
Error: node_modules/@types/eslint/index.d.ts:474:43 - error TS2694: Namespace '"/Users/oleersoy/Github/is/node_modules/@types/estree/index"' has no exported member 'ImportExpression'.
474 ImportExpression?: ((node: ESTree.ImportExpression & NodeParentExtension) => void) | undefined; ~~~~~~~~~~~~~~~
Any ideas?