Skip to content

Commit

Permalink
chore: install jsdoc to generate documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
RuggeroVisintin committed Dec 10, 2023
1 parent 6a89cd6 commit 0cfd277
Show file tree
Hide file tree
Showing 4 changed files with 236 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,13 @@ dist/
src/**/*.js
src/**/*.d.ts

.vscode
.DS_Store

docs/

/test-results/
/playwright-report/
/blob-report/
/playwright/.cache/
.vscode

20 changes: 20 additions & 0 deletions jsdoc.conf.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"plugins": [],
"recurseDepth": 10,
"source": {
"includePattern": ".+\\.ts(doc|x)?$",
"excludePattern": "(^|\\/|\\\\)_"
},
"sourceType": "module",
"tags": {
"allowUnknownTags": true,
"dictionaries": [
"jsdoc",
"closure"
]
},
"templates": {
"cleverLinks": false,
"monospaceLinks": false
}
}
210 changes: 210 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"jest-extended": "^4.0.2",
"jsdoc": "^4.0.2",
"release-please": "^16.4.0",
"semantic-release": "^22.0.10",
"ts-jest": "^29.1.1",
Expand Down

0 comments on commit 0cfd277

Please sign in to comment.