forked from willin/svelte-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypedoc.json
More file actions
42 lines (42 loc) · 1.22 KB
/
typedoc.json
File metadata and controls
42 lines (42 loc) · 1.22 KB
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
36
37
38
39
40
41
42
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": ["./dist/index.d.ts"],
"out": "./static/docs",
"tsconfig": "tsconfig.typedoc.json",
"externalPattern": ["**/node_modules/[!svelte]**"],
"exclude": ["**/*+(index|.test|.spec|.e2e).ts"],
"cleanOutputDir": true,
"disableSources": true,
"hideParameterTypesInTitle": false,
"navigationLinks": {
"Demo": "https://svelte-auth.js.cool/",
"GitHub": "https://github.com/willin/svelte-auth",
"NPM": "https://npmjs.com/package/@svelte-dev/auth",
"Willin": "https://willin.wang"
},
"plugin": ["typedoc-plugin-extras", "typedoc-plugin-keywords", "typedoc-plugin-google-ads"],
"theme": "default",
"googleAdsId": "ca-pub-5059418763237956",
"name": "@svelet-dev/auth",
"customTitle": "@svelet-dev/auth",
"customDescription": "OIDC / OAuth2 authentication and authorization for prerendered / client-side-rendered SvelteKit apps.",
"favicon": "./static/favicon.png",
"footerTypedocVersion": true,
"keywords": [
"auth",
"authentication",
"authorization",
"svelte",
"sveltekit",
"oidc",
"oauth",
"oauth2",
"client",
"browser",
"prerender",
"client-side-rendering",
"csr",
"spa",
"mpa"
]
}