-
Notifications
You must be signed in to change notification settings - Fork 5
/
typedocconfig.js
35 lines (35 loc) · 1.09 KB
/
typedocconfig.js
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
35
module.exports = {
src: [
'./ts/react-hook.ts',
'./ts/web.ts',
'./ts/src/browser/browser-user-link.ts',
'./ts/src/requester/requester.ts',
'./ts/src/requester/node_cache.ts',
'./ts/src/requester/request.ts',
'./ts/src/requester/query/query-structure.ts',
'./ts/src/requester/query/result.ts',
'./ts/src/utils/async.ts',
'./ts/src/nodejs/client-link.ts',
'./ts/src/nodejs/cli-link-wrapper.ts',
'./ts/src/responder/base-local-node.ts',
'./ts/src/responder/node_state.ts',
'./ts/src/responder/responder.ts',
'./ts/src/responder/response.ts',
'./ts/src/responder/node/action-node.ts',
'./ts/src/responder/node/root-node.ts',
'./ts/src/responder/node/value-node.ts',
'./ts/src/responder/response/invoke.ts'
// './ts/src/responder/response/subscribe.ts',
// './ts/src/responder/response/list.ts',
],
mode: 'file',
tsconfig: 'tsconfig.json',
out: './docs',
excludePrivate: true,
excludeProtected: true,
excludeExternals: true,
readme: 'docIndex.md',
name: 'DSLink SDK',
ignoreCompilerErrors: true,
plugin: 'none'
};