Skip to content

Commit dfbfb7b

Browse files
committed
format
1 parent 1063074 commit dfbfb7b

File tree

1 file changed

+19
-18
lines changed

1 file changed

+19
-18
lines changed

docs/api_refs/scripts/create-entrypoints.js

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,29 +2,30 @@ const fs = require("fs");
22
const path = require("path");
33

44
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: [
88
"kind",
99
"visibility",
1010
"instance-first",
1111
"required-first",
12-
"alphabetical"
12+
"alphabetical",
1313
],
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/",
2829
};
2930

3031
/**

0 commit comments

Comments
 (0)