-
Notifications
You must be signed in to change notification settings - Fork 11
/
typedoc.json
34 lines (34 loc) · 1.33 KB
/
typedoc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"$schema": "https://typedoc.org/schema.json",
"name": "Marlowe ts-sdk",
"entryPointStrategy": "packages",
"exclude": ["packages/token-metadata-client", "packages/language/specification-client"],
"out": "./docs",
"readme": "./packages/api.md",
"includeVersion": true,
"plugin": ["./doc/theme/dist/index.js"],
"theme": "marlowe-theme",
"sidebarLinks": {
"How to develop": "https://github.com/input-output-hk/marlowe-ts-sdk/blob/main/doc/howToDevelop.md",
"Module system": "https://github.com/input-output-hk/marlowe-ts-sdk/blob/main/doc/modules-system.md",
"Versioning and releases": "https://github.com/input-output-hk/marlowe-ts-sdk/blob/main/doc/versioning-and-releases.md",
"Changelog": "https://github.com/input-output-hk/marlowe-ts-sdk/blob/main/CHANGELOG.md"
},
"navigationLinks": {
"Github Repo": "https://github.com/input-output-hk/marlowe-ts-sdk"
},
"externalSymbolLinkMappings": {
"fp-ts": {
"Option": "https://gcanti.github.io/fp-ts/modules/Option.ts.html"
},
"io-ts": {
"Branded": "https://github.com/gcanti/io-ts/blob/master/index.md#branded-types--refinements"
},
"lucid-cardano": {
"Lucid": "https://deno.land/x/[email protected]/mod.ts?s=Lucid"
},
"global": {
"io-ts-usage": "https://github.com/gcanti/io-ts/blob/master/index.md#basic-usage"
}
}
}