Skip to content

Commit

Permalink
docs: generate Typedocs using Aegir
Browse files Browse the repository at this point in the history
  • Loading branch information
maschad committed Dec 1, 2022
1 parent 5a62f4f commit 64d0e88
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 12 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@
"generate:proto:fetch": "protons ./src/fetch/pb/proto.proto",
"generate:proto:identify": "protons ./src/identify/pb/message.proto",
"generate:proto:plaintext": "protons ./src/insecure/pb/proto.proto",
"generate:docs": "aegir docs",
"test": "aegir test",
"test:node": "aegir test -t node -f \"./dist/test/**/*.{node,spec}.js\" --cov",
"test:chrome": "aegir test -t browser -f \"./dist/test/**/*.spec.js\" --cov",
Expand Down Expand Up @@ -189,7 +190,7 @@
"@types/p-fifo": "^1.0.0",
"@types/varint": "^6.0.0",
"@types/xsalsa20": "^1.1.0",
"aegir": "^37.3.0",
"aegir": "^37.5.6",
"cborg": "^1.8.1",
"delay": "^5.0.0",
"execa": "^6.1.0",
Expand Down
15 changes: 4 additions & 11 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,9 @@
{
"extends": "aegir/src/config/tsconfig.aegir.json",
"compilerOptions": {
"outDir": "dist"
"outDir": "dist",
"emitDeclarationOnly": true
},
"include": [
"src",
"test"
],
"exclude": [
"src/circuit/pb/index.js",
"src/fetch/pb/proto.js",
"src/identify/pb/message.js",
"src/insecure/pb/proto.js"
]
"include": ["src", "test"],
"exclude": ["src/circuit/pb/index.js", "src/fetch/pb/proto.js", "src/identify/pb/message.js", "src/insecure/pb/proto.js"]
}

0 comments on commit 64d0e88

Please sign in to comment.