Skip to content

Commit

Permalink
chore: setup typedoc configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurschreiber committed Jun 28, 2020
1 parent 921563b commit 0506580
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ test/unit/perf-buffer.coffee

src-coffee/
test-coffee/
docs/
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@
"typescript": "^3.8.3"
},
"scripts": {
"docs": "typedoc",
"lint": "eslint src test --ext .js,.ts && tsc",
"test": "mocha test/unit test/unit/token test/unit/tracking-buffer",
"test-integration": "mocha test/integration/",
Expand Down
10 changes: 9 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,13 @@
"include": [
"src/**/*.ts",
"test/**/*.ts",
]
],

"typedocOptions": {
"name": "Tedious",
"mode": "library",
"out": "./docs",
"exclude": "**/node_modules/**",
"inputFiles": ["./src/tedious.ts"]
}
}

0 comments on commit 0506580

Please sign in to comment.