-
Notifications
You must be signed in to change notification settings - Fork 12k
[feature-needed ?] How can I use typedoc in my angular-cli generated project ? #4403
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Follow this step:
{
"mode": "modules",
"out": "doc",
"theme": "default",
"ignoreCompilerErrors": "true",
"experimentalDecorators": "true",
"emitDecoratorMetadata": "true",
"target": "ES5",
"moduleResolution": "node",
"preserveConstEnums": "true",
"stripInternal": "true",
"suppressExcessPropertyErrors": "true",
"suppressImplicitAnyIndexErrors": "true",
"module": "commonjs"
}
"docs": "npm run typedoc -- --options typedoc.json --exclude '**/*.spec.ts' ./src/",
"typedoc": "typedoc"
Have fun with Typedoc :) |
@zacol thanks for the detailed writeup! |
@luismiguelbravo If you are using typedoc Replacing
module.exports = {
mode: 'modules',
out: 'doc',
theme: 'default',
ignoreCompilerErrors: true,
excludePrivate: true,
excludeNotExported: 'true',
target: 'ES5',
moduleResolution: 'node',
preserveConstEnums: 'true',
stripInternal: 'true',
suppressExcessPropertyErrors: 'true',
suppressImplicitAnyIndexErrors: 'true',
module: 'commonjs'
};
Hope this helps. |
work perfect. |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
( If you know how I could do this on my own, please enlight me and I'll propose a pull request)
The text was updated successfully, but these errors were encountered: