You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is unactionable. You are running TypeDoc with an unsupported version of TS. I suggest either upgrading TS in your project, or using an older version of TypeDoc.
#841 Search terms
CLI, arguments, args
Expected Behavior
Should generate a default themed document.
Actual Behavior
It produces nothing on the filesystem. Just outputs the following to console:
TypeDoc 0.17.7 Using TypeScript 2.9.2 from /ds-web-components/node_modules/typescript/lib
Steps to reproduce the bug
typedoc.json
{ "name": "Prudential Web Components API Documentation", "includeVersion": true, "tsconfig": "./tsconfig.json", "mode": "file", "theme": "default", "inputFiles": ["./src", "./src/**"], "exclude": "**/*+(.d.ts|.spec|.e2e).ts", "includeDeclarations": false, "ignoreCompilerErrors": true, "out": "./dist/docs", "readme": "./README.md", "version": true }
tsconfig.json
{ "compilerOptions": { "rootDir": "src", "target": "es5", "lib": ["es6", "dom"], "typeRoots": ["node_modules/@types"], "rootDirs": ["src"], "moduleResolution": "node", "emitDecoratorMetadata": true, "experimentalDecorators": true, "strict": false, "sourceMap": true, "baseUrl": ".", "declaration": true, "noImplicitAny": true }, "include": ["src/**/*.ts"], "exclude": ["**/*.spec.ts"] }
CLI cmd:
$ npx typedoc --options typedoc.json
Environment
The text was updated successfully, but these errors were encountered: