-
Notifications
You must be signed in to change notification settings - Fork 8
/
typedoc.js
33 lines (33 loc) · 1.09 KB
/
typedoc.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
module.exports = {
name: "Vulcan NPM",
entryPoints: [
// don't forget to list twice packages that have a server/client/common export
"packages/graphql/index.ts",
"packages/graphql/server/index.ts",
"packages/graphql/testing.ts",
"packages/crud/index.ts",
"packages/crud/server/index.ts",
"packages/i18n/index.ts",
"packages/i18n/server/index.ts",
"packages/mdx/index.ts",
"packages/meteor-legacy/index.ts",
"packages/model/index.ts",
"packages/mongo/index.ts",
"packages/mongo/client/index.ts",
"packages/mongo-apollo/index.ts",
"packages/mongo-apollo/server/index.ts",
"packages/permissions/index.ts",
"packages/react-hooks/index.ts",
"packages/react-i18n/index.ts",
"packages/react-ui/index.ts",
"packages/react-ui/testing.ts",
"packages/react-ui-bootstrap/index.ts",
"packages/react-ui-lite/index.ts",
"packages/react-ui-material/index.ts",
"packages/remix-graphql/src/index.ts",
"packages/schema/index.ts",
"packages/utils/index.ts",
"packages/utils/testing.ts",
],
out: "generated/docs",
};