Skip to content

Commit

Permalink
fix: typedoc
Browse files Browse the repository at this point in the history
  • Loading branch information
isordo committed Oct 9, 2023
1 parent fc3c2af commit d40f447
Show file tree
Hide file tree
Showing 18 changed files with 103 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"sonar-scanner": "sonar-scanner",
"prepare": "npm run build",
"check-version": "ts-node --project tsconfig-cjs.json scripts/check-sdk-version.ts",
"typedoc": "typedoc --entryPointStrategy expand ./packages --excludeExternals --externalPattern \"**/node_modules/**\" --includeVersion --includes publicapi --externalPattern internalapi --logLevel Verbose --validation && ts-node --project tsconfig-cjs.json scripts/process-docs.ts",
"typedoc": "typedoc",
"publish": "lerna run tsc && lerna publish",
"bump:version": "lerna version --no-git-tag-version --exact",
"bump:major": "lerna version --no-git-tag-version major --exact --yes",
Expand Down
5 changes: 5 additions & 0 deletions packages/beacon-blockchain-substrate/typedoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"extends": ["../../typedoc.base.json"],
"entryPoints": ["src/index.ts"],
"exclude": ["__tests__", "dist"]
}
5 changes: 5 additions & 0 deletions packages/beacon-blockchain-tezos-sapling/typedoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"extends": ["../../typedoc.base.json"],
"entryPoints": ["src/index.ts"],
"exclude": ["__tests__", "dist"]
}
5 changes: 5 additions & 0 deletions packages/beacon-blockchain-tezos/typedoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"extends": ["../../typedoc.base.json"],
"entryPoints": ["src/index.ts"],
"exclude": ["__tests__", "dist"]
}
5 changes: 5 additions & 0 deletions packages/beacon-core/typedoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"extends": ["../../typedoc.base.json"],
"entryPoints": ["src/index.ts"],
"exclude": ["__tests__", "dist"]
}
5 changes: 5 additions & 0 deletions packages/beacon-dapp/typedoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"extends": ["../../typedoc.base.json"],
"entryPoints": ["src/index.ts"],
"exclude": ["__tests__", "dist"]
}
5 changes: 5 additions & 0 deletions packages/beacon-sdk/typedoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"extends": ["../../typedoc.base.json"],
"entryPoints": ["src/index.ts"],
"exclude": ["__tests__", "dist"]
}
5 changes: 5 additions & 0 deletions packages/beacon-transport-matrix/typedoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"extends": ["../../typedoc.base.json"],
"entryPoints": ["src/index.ts"],
"exclude": ["__tests__", "dist"]
}
5 changes: 5 additions & 0 deletions packages/beacon-transport-postmessage/typedoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"extends": ["../../typedoc.base.json"],
"entryPoints": ["src/index.ts"],
"exclude": ["__tests__", "dist"]
}
5 changes: 5 additions & 0 deletions packages/beacon-transport-walletconnect/typedoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"extends": ["../../typedoc.base.json"],
"entryPoints": ["src/index.ts"],
"exclude": ["__tests__", "dist"]
}
5 changes: 5 additions & 0 deletions packages/beacon-types/typedoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"extends": ["../../typedoc.base.json"],
"entryPoints": ["src/index.ts"],
"exclude": ["__tests__", "dist"]
}
5 changes: 5 additions & 0 deletions packages/beacon-ui/typedoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"extends": ["../../typedoc.base.json"],
"entryPoints": ["src/index.ts"],
"exclude": ["__tests__", "dist"]
}
5 changes: 5 additions & 0 deletions packages/beacon-utils/typedoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"extends": ["../../typedoc.base.json"],
"entryPoints": ["src/index.ts"],
"exclude": ["__tests__", "dist"]
}
5 changes: 5 additions & 0 deletions packages/beacon-wallet/typedoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"extends": ["../../typedoc.base.json"],
"entryPoints": ["src/index.ts"],
"exclude": ["__tests__", "dist"]
}
3 changes: 0 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
"types": ["vite/client", "node", "chrome", "jest"],
"sourceMap": true,
"baseUrl": ".",
"jsx": "preserve",
"jsxImportSource": "solid-js",
"skipLibCheck": true,
/* Strict Type-Checking Options */
"strict": true /* Enable all strict type-checking options. */,
"noImplicitAny": true /* Raise error on expressions and declarations with an implied 'any' type. */,
Expand Down
31 changes: 31 additions & 0 deletions tsconfig.typedoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"extends": "./tsconfig.json",
"exclude": [
".devcontainer",
".github",
".gitlab",
"assets",
"dist",
"docs",
"e2e",
"examples",
"node_modules",
"*/node_modules",
"scripts",
"test",
"__tests__",
"webpack_builds"
],
"compilerOptions": {
"target": "es6",
"lib": ["es2015", "es2016", "es2017", "dom"],
"noUnusedParameters": true,
"noImplicitAny": true,
"downlevelIteration": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"skipLibCheck": true
}
}
4 changes: 4 additions & 0 deletions typedoc.base.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"$schema": "https://typedoc.org/schema.json",
"includeVersion": true
}
2 changes: 2 additions & 0 deletions typedoc.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{
"entryPoints": ["packages/*"],
"entryPointStrategy": "packages",
"categoryOrder": ["DApp", "Wallet", "Error", "*"]
}

0 comments on commit d40f447

Please sign in to comment.