@@ -2,29 +2,30 @@ const fs = require("fs");
2
2
const path = require ( "path" ) ;
3
3
4
4
const BASE_TYPEDOC_CONFIG = {
5
- " $schema" : "https://typedoc.org/schema.json" ,
6
- " out" : "public" ,
7
- " sort" : [
5
+ $schema : "https://typedoc.org/schema.json" ,
6
+ out : "public" ,
7
+ sort : [
8
8
"kind" ,
9
9
"visibility" ,
10
10
"instance-first" ,
11
11
"required-first" ,
12
- "alphabetical"
12
+ "alphabetical" ,
13
13
] ,
14
- "plugin" : [ "./typedoc_plugins/hide_underscore_lc.js" ] ,
15
- "tsconfig" : "../../tsconfig.json" ,
16
- "readme" : "none" ,
17
- "excludePrivate" : true ,
18
- "excludeInternal" : true ,
19
- "excludeExternals" : false , // trying this
20
- "excludeNotDocumented" : false ,
21
- "includeVersion" : true ,
22
- "sourceLinkTemplate" : "https://github.com/langchain-ai/langchainjs/blob/{gitRevision}/{path}#L{line}" ,
23
- "logLevel" : "Error" ,
24
- "name" : "LangChain.js" ,
25
- "skipErrorChecking" : true ,
26
- "exclude" : [ "dist" ] ,
27
- "hostedBaseUrl" : "https://v02.api.js.langchain.com/" ,
14
+ plugin : [ "./typedoc_plugins/hide_underscore_lc.js" ] ,
15
+ tsconfig : "../../tsconfig.json" ,
16
+ readme : "none" ,
17
+ excludePrivate : true ,
18
+ excludeInternal : true ,
19
+ excludeExternals : false , // trying this
20
+ excludeNotDocumented : false ,
21
+ includeVersion : true ,
22
+ sourceLinkTemplate :
23
+ "https://github.com/langchain-ai/langchainjs/blob/{gitRevision}/{path}#L{line}" ,
24
+ logLevel : "Error" ,
25
+ name : "LangChain.js" ,
26
+ skipErrorChecking : true ,
27
+ exclude : [ "dist" ] ,
28
+ hostedBaseUrl : "https://v02.api.js.langchain.com/" ,
28
29
} ;
29
30
30
31
/**
0 commit comments