forked from willin/svelte-session
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypedoc.json
40 lines (40 loc) · 1.13 KB
/
typedoc.json
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
{
"$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"],
"cname": "svelte-session.js.cool",
"cleanOutputDir": true,
"disableSources": true,
"hideParameterTypesInTitle": false,
"navigationLinks": {
"GitHub": "https://github.com/willin/svelte-session",
"NPM": "https://npmjs.com/package/@svelte-dev/session",
"Willin": "https://willin.wang"
},
"plugin": ["typedoc-plugin-extras", "typedoc-plugin-keywords", "typedoc-plugin-google-ads"],
"theme": "default",
"googleAdsId": "ca-pub-5059418763237956",
"name": "@svelet-dev/session",
"customTitle": "@svelet-dev/session",
"customDescription": "Simple Session Storage Management for Svelte",
"favicon": "./static/favicon.png",
"footerTypedocVersion": true,
"keywords": [
"cookie",
"session",
"storage",
"cookies",
"svelte",
"sveltekit",
"client",
"browser",
"prerender",
"client-side-rendering",
"csr",
"spa",
"mpa"
]
}