Skip to content

Commit

Permalink
Replaced ESDoc by JSDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
cedx committed Jul 9, 2019
1 parent c0396ab commit 6dfc1b4
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 23 deletions.
1 change: 1 addition & 0 deletions .npmignore
Expand Up @@ -10,3 +10,4 @@
/*.code-workspace
/*.iml
/*.js
/jsconfig.json
17 changes: 0 additions & 17 deletions etc/esdoc.json

This file was deleted.

17 changes: 17 additions & 0 deletions etc/jsdoc.json
@@ -0,0 +1,17 @@
{
"opts": {
"destination": "doc/api",
"readme": "README.md",
"recurse": true
},
"plugins": ["plugins/markdown"],
"source": {"include": ["lib"]},
"sourceType": "module",
"tags": {
"allowUnknownTags": false,
"dictionaries": ["jsdoc"]
},
"templates": {
"default": {"includeDate": false}
}
}
5 changes: 3 additions & 2 deletions jsconfig.json
@@ -1,9 +1,10 @@
{
"compilerOptions": {
"checkJs": true,
"module": "esnext",
"module": "es2015",
"moduleResolution": "node",
"target": "esnext"
"resolveJsonModule": true,
"target": "es2018"
},
"exclude": [
"node_modules"
Expand Down
7 changes: 3 additions & 4 deletions package.json
Expand Up @@ -22,13 +22,12 @@
"devDependencies": {
"@cedx/coveralls": "^9.0.0",
"chai": "^4.2.0",
"del": "^5.0.0",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"del": "^4.1.1",
"eslint": "^6.0.1",
"eslint": "^5.16.0",
"esm": "^3.2.25",
"gulp": "^4.0.2",
"jsdoc": "^3.6.2",
"mocha": "^6.1.4",
"nyc": "^14.1.1"
},
Expand Down

0 comments on commit 6dfc1b4

Please sign in to comment.