Skip to content

Commit

Permalink
Added tsdoc
Browse files Browse the repository at this point in the history
Still need to generate the wiki pages from generated JSON, but it looks promising
  • Loading branch information
Andrei15193 committed Oct 1, 2024
1 parent b94f941 commit e964172
Show file tree
Hide file tree
Showing 5 changed files with 1,110 additions and 24 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
docs.json
docs/
lib/
node_modules/
15 changes: 11 additions & 4 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"version": "2.0.0",
"tasks": [
{
"label": "npm: build",
"type": "npm",
"script": "build",
"group": {
Expand All @@ -10,19 +11,25 @@
},
"problemMatcher": [
"$tsc"
],
"label": "npm: build"
]
},
{
"label": "npm: test",
"dependsOn": "npm: build",
"type": "npm",
"script": "test",
"group": {
"kind": "test",
"isDefault": true
},
"problemMatcher": [],
"label": "npm: test"
"problemMatcher": []
},
{
"label": "npm: docs",
"dependsOn": "npm: build",
"type": "npm",
"script": "docs",
"problemMatcher": []
}
]
}
Loading

0 comments on commit e964172

Please sign in to comment.