-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
94 additions
and
127 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
/* eslint-disable @typescript-eslint/no-var-requires */ | ||
const path = require('node:path'); | ||
|
||
module.exports = { | ||
name: 'Concordium JS-SDKs', | ||
out: path.resolve(__dirname, '../typedoc'), | ||
entryPointStrategy: 'expand', | ||
entryPoints: [ | ||
path.resolve(__dirname, '../packages/sdk/src/index.ts'), | ||
path.resolve(__dirname, '../packages/sdk/src/nodejs/index.ts'), | ||
], | ||
tsconfig: path.resolve(__dirname, '../tsconfig.json'), | ||
readme: path.resolve(__dirname, './pages/documentation.md'), | ||
plugin: [ | ||
'@knodes/typedoc-plugin-code-blocks', | ||
'@knodes/typedoc-plugin-pages', | ||
'typedoc-plugin-merge-modules', | ||
], | ||
mergeModulesMergeMode: 'module', | ||
pluginCodeBlocks: { | ||
source: path.resolve(__dirname, '../examples'), | ||
}, | ||
pluginPages: { | ||
source: path.resolve(__dirname, './pages'), | ||
pages: [ | ||
{ | ||
name: 'Concordium JS-SDKs', | ||
children: [ | ||
{ | ||
name: 'CIS2-Contracts', | ||
source: 'cis2-contracts.md', | ||
}, | ||
{ | ||
name: 'Identity Proofs', | ||
source: 'identity-proofs.md', | ||
}, | ||
{ | ||
name: 'Runnable Examples', | ||
source: 'runnable-examples.md', | ||
}, | ||
{ | ||
name: 'Transactions', | ||
source: 'transactions.md', | ||
}, | ||
{ | ||
name: 'Utility Functions', | ||
source: 'utility-functions.md', | ||
}, | ||
{ | ||
name: 'Miscellaneous Pages', | ||
childrenDir: 'misc-pages', | ||
children: [ | ||
{ | ||
name: 'Account Creation', | ||
source: 'account-creation.md', | ||
}, | ||
{ | ||
name: 'Optimizing bundled applications', | ||
source: 'bundler-optimizations.md', | ||
}, | ||
{ | ||
name: 'GRPCv1 to GRPCv2 Migration Guide', | ||
source: 'grpc-migration.md', | ||
}, | ||
{ | ||
name: 'Old GRPC-Client', | ||
source: 'grpc-v1.md', | ||
}, | ||
{ | ||
name: 'Upgrade Guide', | ||
source: 'upgrade-guide.md', | ||
}, | ||
], | ||
}, | ||
], | ||
}, | ||
], | ||
}, | ||
}; |
This file was deleted.
Oops, something went wrong.