We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When i run the command yarn document i get the following errors. I don't know what am i doing wrong here:
yarn document
-- package.json scripts
package.json
{ "scripts": { "test": "jest --detectOpenHandles", "build": "tsup src/index.ts --format esm,cjs --dts", "lint": "yarn add react --dev && tsc && npx standard --fix && yarn remove react", "ci": "yarn lint && yarn test && yarn build", "release": "yarn lint && yarn test && yarn build && changeset publish", "document": "typedoc --options typedoc.json" }, }
Here are the versions of typescript, typedoc-plugin-pages and typedoc
typescript
typedoc-plugin-pages
typedoc
"typedoc": "^0.26.5", "typedoc-plugin-pages": "^1.1.0", "typescript": "^5.5.4"
My typedoc.json file looks as follows:
typedoc.json
{ "readme": "./documentation/introduction.md", "name": "Reactite Documentation", "out": "docs/web", "exclude": [ "src/*+(App|.test|index|setupTests|serviceWorker).ts*", "**/**/dist/*" ], "excludePrivate": true, "theme": "pages-plugin" }
What am i possibly doing wrong here?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When i run the command
yarn document
i get the following errors. I don't know what am i doing wrong here:--
package.json
scriptsHere are the versions of
typescript
,typedoc-plugin-pages
andtypedoc
My
typedoc.json
file looks as follows:What am i possibly doing wrong here?
The text was updated successfully, but these errors were encountered: