typedoc-config-nick2bad4u 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +33 -0
- package/dist/preset.d.ts +11 -0
- package/dist/preset.d.ts.map +1 -0
- package/dist/preset.js +9 -0
- package/dist/preset.js.map +1 -0
- package/package.json +151 -0
- package/typedoc.json +592 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Nick2bad4u
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# typedoc-config-nick2bad4u
|
|
2
|
+
|
|
3
|
+
[](https://github.com/Nick2bad4u/typedoc-config-nick2bad4u/actions/workflows/ci.yml)
|
|
4
|
+
[](https://www.npmjs.com/package/typedoc-config-nick2bad4u)
|
|
5
|
+
|
|
6
|
+
Shared TypeDoc config for Nick2bad4u TypeScript projects.
|
|
7
|
+
|
|
8
|
+
## Install
|
|
9
|
+
|
|
10
|
+
```sh
|
|
11
|
+
npm install --save-dev typedoc-config-nick2bad4u
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## Usage
|
|
15
|
+
|
|
16
|
+
Create `typedoc.json`:
|
|
17
|
+
|
|
18
|
+
```json
|
|
19
|
+
{
|
|
20
|
+
"$schema": "https://typedoc.org/schema.json",
|
|
21
|
+
"extends": ["typedoc-config-nick2bad4u/typedoc.json"],
|
|
22
|
+
"entryPoints": ["src/index.ts"],
|
|
23
|
+
"out": "docs/api"
|
|
24
|
+
}
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
Project-specific path options stay in the consuming project because TypeDoc resolves paths relative to the file that declares them.
|
|
28
|
+
|
|
29
|
+
## Verification
|
|
30
|
+
|
|
31
|
+
```sh
|
|
32
|
+
npm run release:verify
|
|
33
|
+
```
|
package/dist/preset.d.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import typedocOptions from "../typedoc.json";
|
|
2
|
+
/** TypeDoc option defaults exported by this package. */
|
|
3
|
+
export type TypeDocConfig = typeof typedocOptions;
|
|
4
|
+
/** Published package name for this shared TypeDoc config. */
|
|
5
|
+
export declare const packageName: "typedoc-config-nick2bad4u";
|
|
6
|
+
/** Packaged TypeDoc JSON config filename. */
|
|
7
|
+
export declare const configFileName: "typedoc.json";
|
|
8
|
+
/** Default TypeDoc options for Nick2bad4u TypeScript projects. */
|
|
9
|
+
export declare const config: TypeDocConfig;
|
|
10
|
+
export default config;
|
|
11
|
+
//# sourceMappingURL=preset.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"preset.d.ts","sourceRoot":"","sources":["../src/preset.ts"],"names":[],"mappings":"AAAA,OAAO,cAAc,MAAM,iBAAiB,CAAuB;AAEnE,wDAAwD;AACxD,MAAM,MAAM,aAAa,GAAG,OAAO,cAAc,CAAC;AAElD,6DAA6D;AAC7D,eAAO,MAAM,WAAW,EAAG,2BAAoC,CAAC;AAEhE,6CAA6C;AAC7C,eAAO,MAAM,cAAc,EAAG,cAAuB,CAAC;AAEtD,kEAAkE;AAClE,eAAO,MAAM,MAAM,EAAE,aAA8B,CAAC;AAEpD,eAAe,MAAM,CAAC"}
|
package/dist/preset.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import typedocOptions from "../typedoc.json" with { type: "json" };
|
|
2
|
+
/** Published package name for this shared TypeDoc config. */
|
|
3
|
+
export const packageName = "typedoc-config-nick2bad4u";
|
|
4
|
+
/** Packaged TypeDoc JSON config filename. */
|
|
5
|
+
export const configFileName = "typedoc.json";
|
|
6
|
+
/** Default TypeDoc options for Nick2bad4u TypeScript projects. */
|
|
7
|
+
export const config = typedocOptions;
|
|
8
|
+
export default config;
|
|
9
|
+
//# sourceMappingURL=preset.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"preset.js","sourceRoot":"","sources":["../src/preset.ts"],"names":[],"mappings":"AAAA,OAAO,cAAc,MAAM,iBAAiB,CAAC,OAAO,IAAI,EAAE,MAAM,EAAE,CAAC;AAKnE,6DAA6D;AAC7D,MAAM,CAAC,MAAM,WAAW,GAAG,2BAAoC,CAAC;AAEhE,6CAA6C;AAC7C,MAAM,CAAC,MAAM,cAAc,GAAG,cAAuB,CAAC;AAEtD,kEAAkE;AAClE,MAAM,CAAC,MAAM,MAAM,GAAkB,cAAc,CAAC;AAEpD,eAAe,MAAM,CAAC"}
|
package/package.json
ADDED
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://www.schemastore.org/package.json",
|
|
3
|
+
"name": "typedoc-config-nick2bad4u",
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"private": false,
|
|
6
|
+
"description": "Shared TypeDoc config for Nick2bad4u TypeScript projects.",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"documentation",
|
|
9
|
+
"typedoc",
|
|
10
|
+
"typedoc-config",
|
|
11
|
+
"typescript",
|
|
12
|
+
"shared-config"
|
|
13
|
+
],
|
|
14
|
+
"homepage": "https://github.com/Nick2bad4u/typedoc-config-nick2bad4u#readme",
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://github.com/Nick2bad4u/typedoc-config-nick2bad4u/issues",
|
|
17
|
+
"email": "20943337+Nick2bad4u@users.noreply.github.com"
|
|
18
|
+
},
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git+https://github.com/Nick2bad4u/typedoc-config-nick2bad4u.git"
|
|
22
|
+
},
|
|
23
|
+
"license": "MIT",
|
|
24
|
+
"author": "Nick2bad4u <20943337+Nick2bad4u@users.noreply.github.com> (https://github.com/Nick2bad4u)",
|
|
25
|
+
"contributors": [
|
|
26
|
+
{
|
|
27
|
+
"name": "Nick2bad4u",
|
|
28
|
+
"email": "20943337+Nick2bad4u@users.noreply.github.com",
|
|
29
|
+
"url": "https://github.com/Nick2bad4u"
|
|
30
|
+
}
|
|
31
|
+
],
|
|
32
|
+
"sideEffects": false,
|
|
33
|
+
"type": "module",
|
|
34
|
+
"exports": {
|
|
35
|
+
".": {
|
|
36
|
+
"types": "./dist/preset.d.ts",
|
|
37
|
+
"import": "./dist/preset.js",
|
|
38
|
+
"require": null
|
|
39
|
+
},
|
|
40
|
+
"./typedoc.json": "./typedoc.json",
|
|
41
|
+
"./package.json": "./package.json"
|
|
42
|
+
},
|
|
43
|
+
"main": "./dist/preset.js",
|
|
44
|
+
"types": "./dist/preset.d.ts",
|
|
45
|
+
"files": [
|
|
46
|
+
"dist",
|
|
47
|
+
"typedoc.json"
|
|
48
|
+
],
|
|
49
|
+
"scripts": {
|
|
50
|
+
"build": "npm run clean:dist && tsc -p tsconfig.build.json",
|
|
51
|
+
"changelog:generate": "git-cliff --config cliff.toml --output CHANGELOG.md",
|
|
52
|
+
"changelog:preview": "git-cliff --config cliff.toml --unreleased",
|
|
53
|
+
"changelog:release-notes": "git-cliff --config cliff.toml --current --strip all",
|
|
54
|
+
"clean:dist": "node scripts/clean-dist.mjs",
|
|
55
|
+
"coverage": "npm run build && vitest run --coverage",
|
|
56
|
+
"lint": "cross-env NODE_OPTIONS=--max_old_space_size=8192 eslint . --cache --cache-strategy content --cache-location .cache/.eslintcache",
|
|
57
|
+
"lint:all": "npm run lint && npm run typecheck && npm run test && npm run lint:prettier && npm run lint:package && npm run lint:yaml && npm run lint:secretlint",
|
|
58
|
+
"lint:all:fix": "npm run lint:fix && npm run lint:prettier:fix && npm run lint:package:fix && npm run typecheck && npm run test && npm run lint:yaml:fix && npm run lint:secretlint",
|
|
59
|
+
"lint:attw": "attw --pack . --profile esm-only",
|
|
60
|
+
"lint:fix": "npm run lint -- --fix",
|
|
61
|
+
"lint:package": "npm run lint:package-sort && npm run lint:package-json && npm run lint:package-check",
|
|
62
|
+
"lint:package:fix": "sort-package-json package.json",
|
|
63
|
+
"lint:package-check": "npm run package:check && npm run lint:publint && npm run lint:attw",
|
|
64
|
+
"lint:package-fix": "npm run lint:package:fix",
|
|
65
|
+
"lint:package-json": "npmPkgJsonLint . --config .npmpackagejsonlintrc.json",
|
|
66
|
+
"lint:package-sort": "sort-package-json --check package.json",
|
|
67
|
+
"lint:prettier": "prettier . --log-level warn --cache --cache-location=.cache/.prettier-cache --cache-strategy=content --check",
|
|
68
|
+
"lint:prettier:fix": "prettier . --log-level warn --cache --cache-location=.cache/.prettier-cache --cache-strategy=content --write",
|
|
69
|
+
"lint:publint": "publint",
|
|
70
|
+
"lint:secretlint": "secretlint --secretlintrc .secretlintrc.cjs --secretlintignore .gitignore \"**/*\"",
|
|
71
|
+
"lint:yaml": "eslint --cache --cache-strategy content --cache-location .cache/.eslintcache \"**/*.{yml,yaml}\"",
|
|
72
|
+
"lint:yaml:fix": "npm run lint:yaml -- --fix",
|
|
73
|
+
"package:check": "npm pack --dry-run",
|
|
74
|
+
"release:check": "npm run release:verify",
|
|
75
|
+
"release:verify": "npm run build && npm run lint:all && npm run lint:package-check",
|
|
76
|
+
"sync:node-version-files": "node scripts/sync-node-version-files.mjs",
|
|
77
|
+
"test": "npm run build && vitest run",
|
|
78
|
+
"test:coverage": "npm run coverage",
|
|
79
|
+
"typecheck": "npm run build && tsc -p tsconfig.json --noEmit && tsc -p tsconfig.eslint.json --noEmit && tsc -p tsconfig.js.json --noEmit && tsc -p tsconfig.vitest-typecheck.json --noEmit",
|
|
80
|
+
"typecheck:all": "npm run typecheck",
|
|
81
|
+
"types:update": "typesync",
|
|
82
|
+
"update-deps": "npx ncu -i --install never && npm update --force && npm install --force && npm run sync:node-version-files",
|
|
83
|
+
"verify": "npm run release:verify"
|
|
84
|
+
},
|
|
85
|
+
"overrides": {
|
|
86
|
+
"remark-lint-frontmatter-schema": {
|
|
87
|
+
"@apidevtools/json-schema-ref-parser": "11.9.3",
|
|
88
|
+
"ajv": "8.20.0",
|
|
89
|
+
"minimatch": "9.0.9",
|
|
90
|
+
"yaml": "2.9.0"
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
"dependencies": {
|
|
94
|
+
"typedoc-docusaurus-theme": "^1.4.2",
|
|
95
|
+
"typedoc-plugin-coverage": "^4.0.3",
|
|
96
|
+
"typedoc-plugin-dt-links": "^2.0.57",
|
|
97
|
+
"typedoc-plugin-external-package-links": "^0.2.0",
|
|
98
|
+
"typedoc-plugin-markdown": "^4.11.0",
|
|
99
|
+
"typedoc-plugin-mdn-links": "^5.1.1",
|
|
100
|
+
"typedoc-plugin-missing-exports": "^4.1.3",
|
|
101
|
+
"typedoc-plugin-remark": "^2.0.1",
|
|
102
|
+
"typedoc-plugin-rename-defaults": "^0.7.3",
|
|
103
|
+
"typedoc-plugin-replace-text": "^4.2.0"
|
|
104
|
+
},
|
|
105
|
+
"devDependencies": {
|
|
106
|
+
"@arethetypeswrong/cli": "^0.18.3",
|
|
107
|
+
"@types/node": "^25.9.1",
|
|
108
|
+
"@vitest/coverage-v8": "^4.1.8",
|
|
109
|
+
"cross-env": "^10.1.0",
|
|
110
|
+
"eslint": "^10.4.1",
|
|
111
|
+
"eslint-config-nick2bad4u": "^1.2.7",
|
|
112
|
+
"git-cliff": "^2.13.1",
|
|
113
|
+
"npm-package-json-lint": "^10.4.0",
|
|
114
|
+
"picocolors": "^1.1.1",
|
|
115
|
+
"prettier": "^3.8.3",
|
|
116
|
+
"prettier-config-nick2bad4u": "^1.0.13",
|
|
117
|
+
"publint": "^0.3.21",
|
|
118
|
+
"remark-config-nick2bad4u": "^1.0.3",
|
|
119
|
+
"secretlint": "^13.0.2",
|
|
120
|
+
"secretlint-config-nick2bad4u": "^1.1.0",
|
|
121
|
+
"sort-package-json": "^3.6.1",
|
|
122
|
+
"typedoc": "^0.28.19",
|
|
123
|
+
"typescript": "^6.0.3",
|
|
124
|
+
"vite": "^8.0.16",
|
|
125
|
+
"vitest": "^4.1.8"
|
|
126
|
+
},
|
|
127
|
+
"peerDependencies": {
|
|
128
|
+
"typedoc": ">=0.28.0"
|
|
129
|
+
},
|
|
130
|
+
"packageManager": "npm@11.16.0",
|
|
131
|
+
"engines": {
|
|
132
|
+
"node": ">=22.0.0"
|
|
133
|
+
},
|
|
134
|
+
"devEngines": {
|
|
135
|
+
"runtime": {
|
|
136
|
+
"name": "node",
|
|
137
|
+
"version": ">=22.0.0",
|
|
138
|
+
"onFail": "error"
|
|
139
|
+
},
|
|
140
|
+
"packageManager": {
|
|
141
|
+
"name": "npm",
|
|
142
|
+
"version": ">=11.0.0",
|
|
143
|
+
"onFail": "error"
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
"publishConfig": {
|
|
147
|
+
"provenance": true,
|
|
148
|
+
"registry": "https://registry.npmjs.org/"
|
|
149
|
+
},
|
|
150
|
+
"readme": "README.md"
|
|
151
|
+
}
|
package/typedoc.json
ADDED
|
@@ -0,0 +1,592 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://typedoc-plugin-markdown.org/schema.json",
|
|
3
|
+
"alwaysCreateEntryPointModule": false,
|
|
4
|
+
"blockTags": [
|
|
5
|
+
"@defaultValue",
|
|
6
|
+
"@deprecated",
|
|
7
|
+
"@decorator",
|
|
8
|
+
"@example",
|
|
9
|
+
"@jsx",
|
|
10
|
+
"@param",
|
|
11
|
+
"@privateRemarks",
|
|
12
|
+
"@remarks",
|
|
13
|
+
"@returns",
|
|
14
|
+
"@see",
|
|
15
|
+
"@throws",
|
|
16
|
+
"@typeParam",
|
|
17
|
+
"@author",
|
|
18
|
+
"@callback",
|
|
19
|
+
"@category",
|
|
20
|
+
"@categoryDescription",
|
|
21
|
+
"@default",
|
|
22
|
+
"@document",
|
|
23
|
+
"@extends",
|
|
24
|
+
"@augments",
|
|
25
|
+
"@yields",
|
|
26
|
+
"@group",
|
|
27
|
+
"@groupDescription",
|
|
28
|
+
"@import",
|
|
29
|
+
"@inheritDoc",
|
|
30
|
+
"@license",
|
|
31
|
+
"@module",
|
|
32
|
+
"@mergeModuleWith",
|
|
33
|
+
"@prop",
|
|
34
|
+
"@property",
|
|
35
|
+
"@return",
|
|
36
|
+
"@satisfies",
|
|
37
|
+
"@since",
|
|
38
|
+
"@sortStrategy",
|
|
39
|
+
"@template",
|
|
40
|
+
"@this",
|
|
41
|
+
"@type",
|
|
42
|
+
"@typedef",
|
|
43
|
+
"@summary",
|
|
44
|
+
"@preventInline",
|
|
45
|
+
"@inlineType",
|
|
46
|
+
"@preventExpand",
|
|
47
|
+
"@expandType"
|
|
48
|
+
],
|
|
49
|
+
"cacheBust": false,
|
|
50
|
+
"cascadedModifierTags": [
|
|
51
|
+
"@alpha",
|
|
52
|
+
"@beta",
|
|
53
|
+
"@experimental",
|
|
54
|
+
"@eventProperty",
|
|
55
|
+
"@internal",
|
|
56
|
+
"@override",
|
|
57
|
+
"@packageDocumentation",
|
|
58
|
+
"@public",
|
|
59
|
+
"@readonly",
|
|
60
|
+
"@sealed",
|
|
61
|
+
"@virtual"
|
|
62
|
+
],
|
|
63
|
+
"categorizeByGroup": false,
|
|
64
|
+
"cleanOutputDir": true,
|
|
65
|
+
"commentStyle": "all",
|
|
66
|
+
"coverageLabel": "TypeDoc Coverage",
|
|
67
|
+
"coverageOutputType": "all",
|
|
68
|
+
"coverageSvgWidth": 104,
|
|
69
|
+
"customAnchorsFormat": "escapedCurlyBrace",
|
|
70
|
+
"customFooterHtmlDisableWrapper": false,
|
|
71
|
+
"darkHighlightTheme": "dark-plus",
|
|
72
|
+
"defaultCategory": "Other",
|
|
73
|
+
"disableGit": false,
|
|
74
|
+
"disableSources": false,
|
|
75
|
+
"emit": "docs",
|
|
76
|
+
"entryPointStrategy": "expand",
|
|
77
|
+
"exclude": [
|
|
78
|
+
"**/dist/**",
|
|
79
|
+
"**/node_modules/**",
|
|
80
|
+
"**/coverage/**",
|
|
81
|
+
"**/build/**",
|
|
82
|
+
"**/out/**"
|
|
83
|
+
],
|
|
84
|
+
"excludeExternals": false,
|
|
85
|
+
"excludeInternal": false,
|
|
86
|
+
"excludeNotDocumented": false,
|
|
87
|
+
"excludePrivate": false,
|
|
88
|
+
"excludePrivateClassFields": false,
|
|
89
|
+
"excludeProtected": false,
|
|
90
|
+
"excludeReferences": false,
|
|
91
|
+
"expandObjects": true,
|
|
92
|
+
"expandParameters": true,
|
|
93
|
+
"externalPattern": [
|
|
94
|
+
"**/node_modules/**"
|
|
95
|
+
],
|
|
96
|
+
"externalSymbolLinkMappings": {
|
|
97
|
+
"@testing-library/react": {
|
|
98
|
+
"fireEvent": "https://testing-library.com/docs/dom-testing-library/api-events",
|
|
99
|
+
"render": "https://testing-library.com/docs/react-testing-library/api#render",
|
|
100
|
+
"screen": "https://testing-library.com/docs/queries/about#screen",
|
|
101
|
+
"waitFor": "https://testing-library.com/docs/dom-testing-library/api-async#waitfor"
|
|
102
|
+
},
|
|
103
|
+
"javascript": {
|
|
104
|
+
"Array": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array",
|
|
105
|
+
"Boolean": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean",
|
|
106
|
+
"Date": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date",
|
|
107
|
+
"Error": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error",
|
|
108
|
+
"Map": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map",
|
|
109
|
+
"Number": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number",
|
|
110
|
+
"Object": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object",
|
|
111
|
+
"Promise": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise",
|
|
112
|
+
"RegExp": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp",
|
|
113
|
+
"Set": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set",
|
|
114
|
+
"String": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String",
|
|
115
|
+
"WeakMap": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakMap",
|
|
116
|
+
"WeakSet": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakSet"
|
|
117
|
+
},
|
|
118
|
+
"node": {
|
|
119
|
+
"Buffer": "https://nodejs.org/docs/latest/api/buffer.html#class-buffer",
|
|
120
|
+
"Error": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error",
|
|
121
|
+
"EventEmitter": "https://nodejs.org/docs/latest/api/events.html#class-eventemitter",
|
|
122
|
+
"crypto": "https://nodejs.org/docs/latest/api/crypto.html",
|
|
123
|
+
"events": "https://nodejs.org/docs/latest/api/events.html",
|
|
124
|
+
"fs": "https://nodejs.org/docs/latest/api/fs.html",
|
|
125
|
+
"os": "https://nodejs.org/docs/latest/api/os.html",
|
|
126
|
+
"path": "https://nodejs.org/docs/latest/api/path.html",
|
|
127
|
+
"process": "https://nodejs.org/docs/latest/api/process.html",
|
|
128
|
+
"url": "https://nodejs.org/docs/latest/api/url.html"
|
|
129
|
+
},
|
|
130
|
+
"postcss": {
|
|
131
|
+
"Plugin": "https://postcss.org/api/#plugin"
|
|
132
|
+
},
|
|
133
|
+
"react": {
|
|
134
|
+
"Component": "https://react.dev/reference/react/Component",
|
|
135
|
+
"JSX": "https://react.dev/learn/writing-markup-with-jsx",
|
|
136
|
+
"ReactNode": "https://react.dev/reference/react/Children#react-node-type",
|
|
137
|
+
"useCallback": "https://react.dev/reference/react/useCallback",
|
|
138
|
+
"useContext": "https://react.dev/reference/react/useContext",
|
|
139
|
+
"useEffect": "https://react.dev/reference/react/useEffect",
|
|
140
|
+
"useMemo": "https://react.dev/reference/react/useMemo",
|
|
141
|
+
"useReducer": "https://react.dev/reference/react/useReducer",
|
|
142
|
+
"useRef": "https://react.dev/reference/react/useRef",
|
|
143
|
+
"useState": "https://react.dev/reference/react/useState"
|
|
144
|
+
},
|
|
145
|
+
"type-fest": {
|
|
146
|
+
"AbstractClass": "https://github.com/sindresorhus/type-fest/blob/main/source/abstract-class.d.ts",
|
|
147
|
+
"AbstractConstructor": "https://github.com/sindresorhus/type-fest/blob/main/source/abstract-constructor.d.ts",
|
|
148
|
+
"AllExtend": "https://github.com/sindresorhus/type-fest/blob/main/source/all-extend.d.ts",
|
|
149
|
+
"AllUnionFields": "https://github.com/sindresorhus/type-fest/blob/main/source/all-union-fields.d.ts",
|
|
150
|
+
"Alphanumeric": "https://github.com/sindresorhus/type-fest/blob/main/source/alphanumeric.d.ts",
|
|
151
|
+
"And": "https://github.com/sindresorhus/type-fest/blob/main/source/and.d.ts",
|
|
152
|
+
"ArrayElement": "https://github.com/sindresorhus/type-fest/blob/main/source/array-element.d.ts",
|
|
153
|
+
"ArrayIndices": "https://github.com/sindresorhus/type-fest/blob/main/source/array-indices.d.ts",
|
|
154
|
+
"ArraySlice": "https://github.com/sindresorhus/type-fest/blob/main/source/array-slice.d.ts",
|
|
155
|
+
"ArraySplice": "https://github.com/sindresorhus/type-fest/blob/main/source/array-splice.d.ts",
|
|
156
|
+
"ArrayTail": "https://github.com/sindresorhus/type-fest/blob/main/source/array-tail.d.ts",
|
|
157
|
+
"ArrayValues": "https://github.com/sindresorhus/type-fest/blob/main/source/array-values.d.ts",
|
|
158
|
+
"Arrayable": "https://github.com/sindresorhus/type-fest/blob/main/source/arrayable.d.ts",
|
|
159
|
+
"AsyncReturnType": "https://github.com/sindresorhus/type-fest/blob/main/source/async-return-type.d.ts",
|
|
160
|
+
"Asyncify": "https://github.com/sindresorhus/type-fest/blob/main/source/asyncify.d.ts",
|
|
161
|
+
"CamelCase": "https://github.com/sindresorhus/type-fest/blob/main/source/camel-case.d.ts",
|
|
162
|
+
"CamelCasedProperties": "https://github.com/sindresorhus/type-fest/blob/main/source/camel-cased-properties.d.ts",
|
|
163
|
+
"CamelCasedPropertiesDeep": "https://github.com/sindresorhus/type-fest/blob/main/source/camel-cased-properties-deep.d.ts",
|
|
164
|
+
"Class": "https://github.com/sindresorhus/type-fest/blob/main/source/class.d.ts",
|
|
165
|
+
"ConditionalExcept": "https://github.com/sindresorhus/type-fest/blob/main/source/conditional-except.d.ts",
|
|
166
|
+
"ConditionalKeys": "https://github.com/sindresorhus/type-fest/blob/main/source/conditional-keys.d.ts",
|
|
167
|
+
"ConditionalPick": "https://github.com/sindresorhus/type-fest/blob/main/source/conditional-pick.d.ts",
|
|
168
|
+
"ConditionalPickDeep": "https://github.com/sindresorhus/type-fest/blob/main/source/conditional-pick-deep.d.ts",
|
|
169
|
+
"ConditionalSimplify": "https://github.com/sindresorhus/type-fest/blob/main/source/conditional-simplify.d.ts",
|
|
170
|
+
"ConditionalSimplifyDeep": "https://github.com/sindresorhus/type-fest/blob/main/source/conditional-simplify-deep.d.ts",
|
|
171
|
+
"Constructor": "https://github.com/sindresorhus/type-fest/blob/main/source/constructor.d.ts",
|
|
172
|
+
"DelimiterCase": "https://github.com/sindresorhus/type-fest/blob/main/source/delimiter-case.d.ts",
|
|
173
|
+
"DelimiterCasedProperties": "https://github.com/sindresorhus/type-fest/blob/main/source/delimiter-cased-properties.d.ts",
|
|
174
|
+
"DelimiterCasedPropertiesDeep": "https://github.com/sindresorhus/type-fest/blob/main/source/delimiter-cased-properties-deep.d.ts",
|
|
175
|
+
"DigitCharacter": "https://github.com/sindresorhus/type-fest/blob/main/source/digit-character.d.ts",
|
|
176
|
+
"DistributedOmit": "https://github.com/sindresorhus/type-fest/blob/main/source/distributed-omit.d.ts",
|
|
177
|
+
"DistributedPick": "https://github.com/sindresorhus/type-fest/blob/main/source/distributed-pick.d.ts",
|
|
178
|
+
"EmptyObject": "https://github.com/sindresorhus/type-fest/blob/main/source/empty-object.d.ts",
|
|
179
|
+
"Entries": "https://github.com/sindresorhus/type-fest/blob/main/source/entries.d.ts",
|
|
180
|
+
"Entry": "https://github.com/sindresorhus/type-fest/blob/main/source/entry.d.ts",
|
|
181
|
+
"Exact": "https://github.com/sindresorhus/type-fest/blob/main/source/exact.d.ts",
|
|
182
|
+
"Except": "https://github.com/sindresorhus/type-fest/blob/main/source/except.d.ts",
|
|
183
|
+
"ExcludeRestElement": "https://github.com/sindresorhus/type-fest/blob/main/source/exclude-rest-element.d.ts",
|
|
184
|
+
"ExcludeStrict": "https://github.com/sindresorhus/type-fest/blob/main/source/exclude-strict.d.ts",
|
|
185
|
+
"ExclusifyUnion": "https://github.com/sindresorhus/type-fest/blob/main/source/exclusify-union.d.ts",
|
|
186
|
+
"ExtendsStrict": "https://github.com/sindresorhus/type-fest/blob/main/source/extends-strict.d.ts",
|
|
187
|
+
"ExtractRestElement": "https://github.com/sindresorhus/type-fest/blob/main/source/extract-rest-element.d.ts",
|
|
188
|
+
"ExtractStrict": "https://github.com/sindresorhus/type-fest/blob/main/source/extract-strict.d.ts",
|
|
189
|
+
"FindGlobalInstanceType": "https://github.com/sindresorhus/type-fest/blob/main/source/find-global-instance-type.d.ts",
|
|
190
|
+
"FindGlobalType": "https://github.com/sindresorhus/type-fest/blob/main/source/find-global-type.d.ts",
|
|
191
|
+
"Finite": "https://github.com/sindresorhus/type-fest/blob/main/source/finite.d.ts",
|
|
192
|
+
"FixedLengthArray": "https://github.com/sindresorhus/type-fest/blob/main/source/fixed-length-array.d.ts",
|
|
193
|
+
"Float": "https://github.com/sindresorhus/type-fest/blob/main/source/float.d.ts",
|
|
194
|
+
"Get": "https://github.com/sindresorhus/type-fest/blob/main/source/get.d.ts",
|
|
195
|
+
"GlobalThis": "https://github.com/sindresorhus/type-fest/blob/main/source/global-this.d.ts",
|
|
196
|
+
"GreaterThan": "https://github.com/sindresorhus/type-fest/blob/main/source/greater-than.d.ts",
|
|
197
|
+
"GreaterThanOrEqual": "https://github.com/sindresorhus/type-fest/blob/main/source/greater-than-or-equal.d.ts",
|
|
198
|
+
"HasOptionalKeys": "https://github.com/sindresorhus/type-fest/blob/main/source/has-optional-keys.d.ts",
|
|
199
|
+
"HasReadonlyKeys": "https://github.com/sindresorhus/type-fest/blob/main/source/has-readonly-keys.d.ts",
|
|
200
|
+
"HasRequiredKeys": "https://github.com/sindresorhus/type-fest/blob/main/source/has-required-keys.d.ts",
|
|
201
|
+
"HasWritableKeys": "https://github.com/sindresorhus/type-fest/blob/main/source/has-writable-keys.d.ts",
|
|
202
|
+
"If": "https://github.com/sindresorhus/type-fest/blob/main/source/if.d.ts",
|
|
203
|
+
"Includes": "https://github.com/sindresorhus/type-fest/blob/main/source/includes.d.ts",
|
|
204
|
+
"IntClosedRange": "https://github.com/sindresorhus/type-fest/blob/main/source/int-closed-range.d.ts",
|
|
205
|
+
"IntRange": "https://github.com/sindresorhus/type-fest/blob/main/source/int-range.d.ts",
|
|
206
|
+
"Integer": "https://github.com/sindresorhus/type-fest/blob/main/source/integer.d.ts",
|
|
207
|
+
"InvariantOf": "https://github.com/sindresorhus/type-fest/blob/main/source/invariant-of.d.ts",
|
|
208
|
+
"IsAny": "https://github.com/sindresorhus/type-fest/blob/main/source/is-any.d.ts",
|
|
209
|
+
"IsBooleanLiteral": "https://github.com/sindresorhus/type-fest/blob/main/source/is-boolean-literal.d.ts",
|
|
210
|
+
"IsEmptyObject": "https://github.com/sindresorhus/type-fest/blob/main/source/is-empty-object.d.ts",
|
|
211
|
+
"IsEqual": "https://github.com/sindresorhus/type-fest/blob/main/source/is-equal.d.ts",
|
|
212
|
+
"IsFloat": "https://github.com/sindresorhus/type-fest/blob/main/source/is-float.d.ts",
|
|
213
|
+
"IsInteger": "https://github.com/sindresorhus/type-fest/blob/main/source/is-integer.d.ts",
|
|
214
|
+
"IsLiteral": "https://github.com/sindresorhus/type-fest/blob/main/source/is-literal.d.ts",
|
|
215
|
+
"IsLowercase": "https://github.com/sindresorhus/type-fest/blob/main/source/is-lowercase.d.ts",
|
|
216
|
+
"IsNegative": "https://github.com/sindresorhus/type-fest/blob/main/source/is-negative.d.ts",
|
|
217
|
+
"IsNever": "https://github.com/sindresorhus/type-fest/blob/main/source/is-never.d.ts",
|
|
218
|
+
"IsNull": "https://github.com/sindresorhus/type-fest/blob/main/source/is-null.d.ts",
|
|
219
|
+
"IsNullable": "https://github.com/sindresorhus/type-fest/blob/main/source/is-nullable.d.ts",
|
|
220
|
+
"IsNumericLiteral": "https://github.com/sindresorhus/type-fest/blob/main/source/is-numeric-literal.d.ts",
|
|
221
|
+
"IsOptional": "https://github.com/sindresorhus/type-fest/blob/main/source/is-optional.d.ts",
|
|
222
|
+
"IsOptionalKeyOf": "https://github.com/sindresorhus/type-fest/blob/main/source/is-optional-key-of.d.ts",
|
|
223
|
+
"IsReadonlyKeyOf": "https://github.com/sindresorhus/type-fest/blob/main/source/is-readonly-key-of.d.ts",
|
|
224
|
+
"IsRequiredKeyOf": "https://github.com/sindresorhus/type-fest/blob/main/source/is-required-key-of.d.ts",
|
|
225
|
+
"IsStringLiteral": "https://github.com/sindresorhus/type-fest/blob/main/source/is-string-literal.d.ts",
|
|
226
|
+
"IsSymbolLiteral": "https://github.com/sindresorhus/type-fest/blob/main/source/is-symbol-literal.d.ts",
|
|
227
|
+
"IsTuple": "https://github.com/sindresorhus/type-fest/blob/main/source/is-tuple.d.ts",
|
|
228
|
+
"IsUndefined": "https://github.com/sindresorhus/type-fest/blob/main/source/is-undefined.d.ts",
|
|
229
|
+
"IsUnion": "https://github.com/sindresorhus/type-fest/blob/main/source/is-union.d.ts",
|
|
230
|
+
"IsUnknown": "https://github.com/sindresorhus/type-fest/blob/main/source/is-unknown.d.ts",
|
|
231
|
+
"IsUppercase": "https://github.com/sindresorhus/type-fest/blob/main/source/is-uppercase.d.ts",
|
|
232
|
+
"IsWritableKeyOf": "https://github.com/sindresorhus/type-fest/blob/main/source/is-writable-key-of.d.ts",
|
|
233
|
+
"IterableElement": "https://github.com/sindresorhus/type-fest/blob/main/source/iterable-element.d.ts",
|
|
234
|
+
"Join": "https://github.com/sindresorhus/type-fest/blob/main/source/join.d.ts",
|
|
235
|
+
"JsonArray": "https://github.com/sindresorhus/type-fest/blob/main/source/basic.d.ts",
|
|
236
|
+
"JsonObject": "https://github.com/sindresorhus/type-fest/blob/main/source/basic.d.ts",
|
|
237
|
+
"JsonPrimitive": "https://github.com/sindresorhus/type-fest/blob/main/source/basic.d.ts",
|
|
238
|
+
"JsonValue": "https://github.com/sindresorhus/type-fest/blob/main/source/basic.d.ts",
|
|
239
|
+
"Jsonifiable": "https://github.com/sindresorhus/type-fest/blob/main/source/jsonifiable.d.ts",
|
|
240
|
+
"Jsonify": "https://github.com/sindresorhus/type-fest/blob/main/source/jsonify.d.ts",
|
|
241
|
+
"KebabCase": "https://github.com/sindresorhus/type-fest/blob/main/source/kebab-case.d.ts",
|
|
242
|
+
"KebabCasedProperties": "https://github.com/sindresorhus/type-fest/blob/main/source/kebab-cased-properties.d.ts",
|
|
243
|
+
"KebabCasedPropertiesDeep": "https://github.com/sindresorhus/type-fest/blob/main/source/kebab-cased-properties-deep.d.ts",
|
|
244
|
+
"KeyAsString": "https://github.com/sindresorhus/type-fest/blob/main/source/key-as-string.d.ts",
|
|
245
|
+
"KeysOfUnion": "https://github.com/sindresorhus/type-fest/blob/main/source/keys-of-union.d.ts",
|
|
246
|
+
"LastArrayElement": "https://github.com/sindresorhus/type-fest/blob/main/source/last-array-element.d.ts",
|
|
247
|
+
"LessThan": "https://github.com/sindresorhus/type-fest/blob/main/source/less-than.d.ts",
|
|
248
|
+
"LessThanOrEqual": "https://github.com/sindresorhus/type-fest/blob/main/source/less-than-or-equal.d.ts",
|
|
249
|
+
"LiteralToPrimitive": "https://github.com/sindresorhus/type-fest/blob/main/source/literal-to-primitive.d.ts",
|
|
250
|
+
"LiteralToPrimitiveDeep": "https://github.com/sindresorhus/type-fest/blob/main/source/literal-to-primitive-deep.d.ts",
|
|
251
|
+
"LiteralUnion": "https://github.com/sindresorhus/type-fest/blob/main/source/literal-union.d.ts",
|
|
252
|
+
"LowercaseLetter": "https://github.com/sindresorhus/type-fest/blob/main/source/lowercase-letter.d.ts",
|
|
253
|
+
"Merge": "https://github.com/sindresorhus/type-fest/blob/main/source/merge.d.ts",
|
|
254
|
+
"MergeDeep": "https://github.com/sindresorhus/type-fest/blob/main/source/merge-deep.d.ts",
|
|
255
|
+
"MergeExclusive": "https://github.com/sindresorhus/type-fest/blob/main/source/merge-exclusive.d.ts",
|
|
256
|
+
"MultidimensionalArray": "https://github.com/sindresorhus/type-fest/blob/main/source/multidimensional-array.d.ts",
|
|
257
|
+
"MultidimensionalReadonlyArray": "https://github.com/sindresorhus/type-fest/blob/main/source/multidimensional-readonly-array.d.ts",
|
|
258
|
+
"Negative": "https://github.com/sindresorhus/type-fest/blob/main/source/negative.d.ts",
|
|
259
|
+
"NegativeFloat": "https://github.com/sindresorhus/type-fest/blob/main/source/negative-float.d.ts",
|
|
260
|
+
"NegativeInfinity": "https://github.com/sindresorhus/type-fest/blob/main/source/negative-infinity.d.ts",
|
|
261
|
+
"NegativeInteger": "https://github.com/sindresorhus/type-fest/blob/main/source/negative-integer.d.ts",
|
|
262
|
+
"NonEmptyObject": "https://github.com/sindresorhus/type-fest/blob/main/source/non-empty-object.d.ts",
|
|
263
|
+
"NonEmptyString": "https://github.com/sindresorhus/type-fest/blob/main/source/non-empty-string.d.ts",
|
|
264
|
+
"NonEmptyTuple": "https://github.com/sindresorhus/type-fest/blob/main/source/non-empty-tuple.d.ts",
|
|
265
|
+
"NonNegative": "https://github.com/sindresorhus/type-fest/blob/main/source/non-negative.d.ts",
|
|
266
|
+
"NonNegativeInteger": "https://github.com/sindresorhus/type-fest/blob/main/source/non-negative-integer.d.ts",
|
|
267
|
+
"ObservableLike": "https://github.com/sindresorhus/type-fest/blob/main/source/observable-like.d.ts",
|
|
268
|
+
"OmitDeep": "https://github.com/sindresorhus/type-fest/blob/main/source/omit-deep.d.ts",
|
|
269
|
+
"OmitIndexSignature": "https://github.com/sindresorhus/type-fest/blob/main/source/omit-index-signature.d.ts",
|
|
270
|
+
"OptionalKeysOf": "https://github.com/sindresorhus/type-fest/blob/main/source/optional-keys-of.d.ts",
|
|
271
|
+
"Or": "https://github.com/sindresorhus/type-fest/blob/main/source/or.d.ts",
|
|
272
|
+
"OverrideProperties": "https://github.com/sindresorhus/type-fest/blob/main/source/override-properties.d.ts",
|
|
273
|
+
"PackageJson": "https://github.com/sindresorhus/type-fest/blob/main/source/package-json.d.ts",
|
|
274
|
+
"PartialDeep": "https://github.com/sindresorhus/type-fest/blob/main/source/partial-deep.d.ts",
|
|
275
|
+
"PartialOnUndefinedDeep": "https://github.com/sindresorhus/type-fest/blob/main/source/partial-on-undefined-deep.d.ts",
|
|
276
|
+
"PascalCase": "https://github.com/sindresorhus/type-fest/blob/main/source/pascal-case.d.ts",
|
|
277
|
+
"PascalCasedProperties": "https://github.com/sindresorhus/type-fest/blob/main/source/pascal-cased-properties.d.ts",
|
|
278
|
+
"PascalCasedPropertiesDeep": "https://github.com/sindresorhus/type-fest/blob/main/source/pascal-cased-properties-deep.d.ts",
|
|
279
|
+
"Paths": "https://github.com/sindresorhus/type-fest/blob/main/source/paths.d.ts",
|
|
280
|
+
"PickDeep": "https://github.com/sindresorhus/type-fest/blob/main/source/pick-deep.d.ts",
|
|
281
|
+
"PickIndexSignature": "https://github.com/sindresorhus/type-fest/blob/main/source/pick-index-signature.d.ts",
|
|
282
|
+
"PositiveInfinity": "https://github.com/sindresorhus/type-fest/blob/main/source/positive-infinity.d.ts",
|
|
283
|
+
"Primitive": "https://github.com/sindresorhus/type-fest/blob/main/source/primitive.d.ts",
|
|
284
|
+
"Promisable": "https://github.com/sindresorhus/type-fest/blob/main/source/promisable.d.ts",
|
|
285
|
+
"ReadonlyDeep": "https://github.com/sindresorhus/type-fest/blob/main/source/readonly-deep.d.ts",
|
|
286
|
+
"ReadonlyKeysOf": "https://github.com/sindresorhus/type-fest/blob/main/source/readonly-keys-of.d.ts",
|
|
287
|
+
"ReadonlyTuple": "https://github.com/sindresorhus/type-fest/blob/main/source/readonly-tuple.d.ts",
|
|
288
|
+
"RemovePrefix": "https://github.com/sindresorhus/type-fest/blob/main/source/remove-prefix.d.ts",
|
|
289
|
+
"RemoveSuffix": "https://github.com/sindresorhus/type-fest/blob/main/source/remove-suffix.d.ts",
|
|
290
|
+
"Replace": "https://github.com/sindresorhus/type-fest/blob/main/source/replace.d.ts",
|
|
291
|
+
"RequireAllOrNone": "https://github.com/sindresorhus/type-fest/blob/main/source/require-all-or-none.d.ts",
|
|
292
|
+
"RequireAtLeastOne": "https://github.com/sindresorhus/type-fest/blob/main/source/require-at-least-one.d.ts",
|
|
293
|
+
"RequireExactlyOne": "https://github.com/sindresorhus/type-fest/blob/main/source/require-exactly-one.d.ts",
|
|
294
|
+
"RequireOneOrNone": "https://github.com/sindresorhus/type-fest/blob/main/source/require-one-or-none.d.ts",
|
|
295
|
+
"RequiredDeep": "https://github.com/sindresorhus/type-fest/blob/main/source/required-deep.d.ts",
|
|
296
|
+
"RequiredKeysOf": "https://github.com/sindresorhus/type-fest/blob/main/source/required-keys-of.d.ts",
|
|
297
|
+
"Schema": "https://github.com/sindresorhus/type-fest/blob/main/source/schema.d.ts",
|
|
298
|
+
"ScreamingSnakeCase": "https://github.com/sindresorhus/type-fest/blob/main/source/screaming-snake-case.d.ts",
|
|
299
|
+
"SetFieldType": "https://github.com/sindresorhus/type-fest/blob/main/source/set-field-type.d.ts",
|
|
300
|
+
"SetNonNullable": "https://github.com/sindresorhus/type-fest/blob/main/source/set-non-nullable.d.ts",
|
|
301
|
+
"SetNonNullableDeep": "https://github.com/sindresorhus/type-fest/blob/main/source/set-non-nullable-deep.d.ts",
|
|
302
|
+
"SetOptional": "https://github.com/sindresorhus/type-fest/blob/main/source/set-optional.d.ts",
|
|
303
|
+
"SetParameterType": "https://github.com/sindresorhus/type-fest/blob/main/source/set-parameter-type.d.ts",
|
|
304
|
+
"SetReadonly": "https://github.com/sindresorhus/type-fest/blob/main/source/set-readonly.d.ts",
|
|
305
|
+
"SetRequired": "https://github.com/sindresorhus/type-fest/blob/main/source/set-required.d.ts",
|
|
306
|
+
"SetRequiredDeep": "https://github.com/sindresorhus/type-fest/blob/main/source/set-required-deep.d.ts",
|
|
307
|
+
"SetReturnType": "https://github.com/sindresorhus/type-fest/blob/main/source/set-return-type.d.ts",
|
|
308
|
+
"SharedUnionFields": "https://github.com/sindresorhus/type-fest/blob/main/source/shared-union-fields.d.ts",
|
|
309
|
+
"SharedUnionFieldsDeep": "https://github.com/sindresorhus/type-fest/blob/main/source/shared-union-fields-deep.d.ts",
|
|
310
|
+
"Simplify": "https://github.com/sindresorhus/type-fest/blob/main/source/simplify.d.ts",
|
|
311
|
+
"SimplifyDeep": "https://github.com/sindresorhus/type-fest/blob/main/source/simplify-deep.d.ts",
|
|
312
|
+
"SingleKeyObject": "https://github.com/sindresorhus/type-fest/blob/main/source/single-key-object.d.ts",
|
|
313
|
+
"SnakeCase": "https://github.com/sindresorhus/type-fest/blob/main/source/snake-case.d.ts",
|
|
314
|
+
"SnakeCasedProperties": "https://github.com/sindresorhus/type-fest/blob/main/source/snake-cased-properties.d.ts",
|
|
315
|
+
"SnakeCasedPropertiesDeep": "https://github.com/sindresorhus/type-fest/blob/main/source/snake-cased-properties-deep.d.ts",
|
|
316
|
+
"Split": "https://github.com/sindresorhus/type-fest/blob/main/source/split.d.ts",
|
|
317
|
+
"SplitOnRestElement": "https://github.com/sindresorhus/type-fest/blob/main/source/split-on-rest-element.d.ts",
|
|
318
|
+
"Spread": "https://github.com/sindresorhus/type-fest/blob/main/source/spread.d.ts",
|
|
319
|
+
"StringRepeat": "https://github.com/sindresorhus/type-fest/blob/main/source/string-repeat.d.ts",
|
|
320
|
+
"StringSlice": "https://github.com/sindresorhus/type-fest/blob/main/source/string-slice.d.ts",
|
|
321
|
+
"Stringified": "https://github.com/sindresorhus/type-fest/blob/main/source/stringified.d.ts",
|
|
322
|
+
"StructuredCloneable": "https://github.com/sindresorhus/type-fest/blob/main/source/structured-cloneable.d.ts",
|
|
323
|
+
"Subtract": "https://github.com/sindresorhus/type-fest/blob/main/source/subtract.d.ts",
|
|
324
|
+
"Sum": "https://github.com/sindresorhus/type-fest/blob/main/source/sum.d.ts",
|
|
325
|
+
"Tagged": "https://github.com/sindresorhus/type-fest/blob/main/source/tagged.d.ts",
|
|
326
|
+
"TaggedUnion": "https://github.com/sindresorhus/type-fest/blob/main/source/tagged-union.d.ts",
|
|
327
|
+
"Trim": "https://github.com/sindresorhus/type-fest/blob/main/source/trim.d.ts",
|
|
328
|
+
"TsConfigJson": "https://github.com/sindresorhus/type-fest/blob/main/source/tsconfig-json.d.ts",
|
|
329
|
+
"TupleOf": "https://github.com/sindresorhus/type-fest/blob/main/source/tuple-of.d.ts",
|
|
330
|
+
"TupleToObject": "https://github.com/sindresorhus/type-fest/blob/main/source/tuple-to-object.d.ts",
|
|
331
|
+
"TupleToUnion": "https://github.com/sindresorhus/type-fest/blob/main/source/tuple-to-union.d.ts",
|
|
332
|
+
"TypedArray": "https://github.com/sindresorhus/type-fest/blob/main/source/typed-array.d.ts",
|
|
333
|
+
"UndefinedOnPartialDeep": "https://github.com/sindresorhus/type-fest/blob/main/source/undefined-on-partial-deep.d.ts",
|
|
334
|
+
"UnionToIntersection": "https://github.com/sindresorhus/type-fest/blob/main/source/union-to-intersection.d.ts",
|
|
335
|
+
"UnionToTuple": "https://github.com/sindresorhus/type-fest/blob/main/source/union-to-tuple.d.ts",
|
|
336
|
+
"UnknownArray": "https://github.com/sindresorhus/type-fest/blob/main/source/unknown-array.d.ts",
|
|
337
|
+
"UnknownMap": "https://github.com/sindresorhus/type-fest/blob/main/source/unknown-map.d.ts",
|
|
338
|
+
"UnknownRecord": "https://github.com/sindresorhus/type-fest/blob/main/source/unknown-record.d.ts",
|
|
339
|
+
"UnknownSet": "https://github.com/sindresorhus/type-fest/blob/main/source/unknown-set.d.ts",
|
|
340
|
+
"UnwrapRequired": "https://github.com/sindresorhus/type-fest/blob/main/source/unwrap-required.d.ts",
|
|
341
|
+
"UnwrapTagged": "https://github.com/sindresorhus/type-fest/blob/main/source/unwrap-tagged.d.ts",
|
|
342
|
+
"UppercaseLetter": "https://github.com/sindresorhus/type-fest/blob/main/source/uppercase-letter.d.ts",
|
|
343
|
+
"ValueOf": "https://github.com/sindresorhus/type-fest/blob/main/source/value-of.d.ts",
|
|
344
|
+
"Words": "https://github.com/sindresorhus/type-fest/blob/main/source/words.d.ts",
|
|
345
|
+
"Writable": "https://github.com/sindresorhus/type-fest/blob/main/source/writable.d.ts",
|
|
346
|
+
"WritableDeep": "https://github.com/sindresorhus/type-fest/blob/main/source/writable-deep.d.ts",
|
|
347
|
+
"WritableKeysOf": "https://github.com/sindresorhus/type-fest/blob/main/source/writable-keys-of.d.ts",
|
|
348
|
+
"Xor": "https://github.com/sindresorhus/type-fest/blob/main/source/xor.d.ts"
|
|
349
|
+
},
|
|
350
|
+
"typescript": {
|
|
351
|
+
"ArrayBufferView": "#",
|
|
352
|
+
"Exclude": "https://www.typescriptlang.org/docs/handbook/utility-types.html#excludetype-excludedunion",
|
|
353
|
+
"Extract": "https://www.typescriptlang.org/docs/handbook/utility-types.html#extracttype-union",
|
|
354
|
+
"NonNullable": "https://www.typescriptlang.org/docs/handbook/utility-types.html#nonnullabletype",
|
|
355
|
+
"Omit": "https://www.typescriptlang.org/docs/handbook/utility-types.html#omittype-keys",
|
|
356
|
+
"Parameters": "https://www.typescriptlang.org/docs/handbook/utility-types.html#parameterstype",
|
|
357
|
+
"Partial": "https://www.typescriptlang.org/docs/handbook/utility-types.html#partialtype",
|
|
358
|
+
"Pick": "https://www.typescriptlang.org/docs/handbook/utility-types.html#picktype-keys",
|
|
359
|
+
"Promise": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise",
|
|
360
|
+
"Record": "https://www.typescriptlang.org/docs/handbook/utility-types.html#recordkeys-type",
|
|
361
|
+
"Required": "https://www.typescriptlang.org/docs/handbook/utility-types.html#requiredtype",
|
|
362
|
+
"ReturnType": "https://www.typescriptlang.org/docs/handbook/utility-types.html#returntypetype"
|
|
363
|
+
},
|
|
364
|
+
"vite": {
|
|
365
|
+
"Plugin": "https://vitejs.dev/guide/api-plugin.html",
|
|
366
|
+
"UserConfig": "https://vitejs.dev/config/",
|
|
367
|
+
"defineConfig": "https://vitejs.dev/config/"
|
|
368
|
+
},
|
|
369
|
+
"vitest": {
|
|
370
|
+
"afterAll": "https://vitest.dev/api/#afterall",
|
|
371
|
+
"afterEach": "https://vitest.dev/api/#aftereach",
|
|
372
|
+
"beforeAll": "https://vitest.dev/api/#beforeall",
|
|
373
|
+
"beforeEach": "https://vitest.dev/api/#beforeeach",
|
|
374
|
+
"describe": "https://vitest.dev/api/#describe",
|
|
375
|
+
"expect": "https://vitest.dev/api/#expect",
|
|
376
|
+
"it": "https://vitest.dev/api/#test",
|
|
377
|
+
"test": "https://vitest.dev/api/#test"
|
|
378
|
+
},
|
|
379
|
+
"zod": {
|
|
380
|
+
"ZodArray": "https://zod.dev/?id=arrays",
|
|
381
|
+
"ZodBoolean": "https://zod.dev/?id=booleans",
|
|
382
|
+
"ZodError": "https://zod.dev/?id=error-handling",
|
|
383
|
+
"ZodNumber": "https://zod.dev/?id=numbers",
|
|
384
|
+
"ZodObject": "https://zod.dev/?id=objects",
|
|
385
|
+
"ZodOptional": "https://zod.dev/?id=optionals",
|
|
386
|
+
"ZodSchema": "https://zod.dev/?id=basic-usage",
|
|
387
|
+
"ZodString": "https://zod.dev/?id=strings",
|
|
388
|
+
"ZodType": "https://zod.dev/?id=basic-usage",
|
|
389
|
+
"ZodUnion": "https://zod.dev/?id=unions",
|
|
390
|
+
"z": "https://zod.dev/",
|
|
391
|
+
"z.ZodError": "https://zod.dev/?id=error-handling"
|
|
392
|
+
}
|
|
393
|
+
},
|
|
394
|
+
"formatWithPrettier": true,
|
|
395
|
+
"gitRemote": "origin",
|
|
396
|
+
"gitRevision": "main",
|
|
397
|
+
"groupReferencesByType": false,
|
|
398
|
+
"headings": true,
|
|
399
|
+
"highlightLanguages": [
|
|
400
|
+
"bash",
|
|
401
|
+
"console",
|
|
402
|
+
"css",
|
|
403
|
+
"html",
|
|
404
|
+
"javascript",
|
|
405
|
+
"json",
|
|
406
|
+
"jsonc",
|
|
407
|
+
"json5",
|
|
408
|
+
"yaml",
|
|
409
|
+
"tsx",
|
|
410
|
+
"typescript",
|
|
411
|
+
"jsx",
|
|
412
|
+
"python",
|
|
413
|
+
"java",
|
|
414
|
+
"csharp",
|
|
415
|
+
"cpp",
|
|
416
|
+
"toml",
|
|
417
|
+
"ini",
|
|
418
|
+
"diff"
|
|
419
|
+
],
|
|
420
|
+
"includeDocCommentReferences": false,
|
|
421
|
+
"includeVersion": true,
|
|
422
|
+
"inlineTags": [
|
|
423
|
+
"@link",
|
|
424
|
+
"@inheritDoc",
|
|
425
|
+
"@label",
|
|
426
|
+
"@linkcode",
|
|
427
|
+
"@linkplain",
|
|
428
|
+
"@include",
|
|
429
|
+
"@includeCode"
|
|
430
|
+
],
|
|
431
|
+
"jsDocCompatibility": {
|
|
432
|
+
"defaultTag": true,
|
|
433
|
+
"exampleTag": true,
|
|
434
|
+
"ignoreUnescapedBraces": true,
|
|
435
|
+
"inheritDocTag": true
|
|
436
|
+
},
|
|
437
|
+
"kindSortOrder": [
|
|
438
|
+
"Document",
|
|
439
|
+
"Project",
|
|
440
|
+
"Module",
|
|
441
|
+
"Namespace",
|
|
442
|
+
"Enum",
|
|
443
|
+
"EnumMember",
|
|
444
|
+
"Class",
|
|
445
|
+
"Interface",
|
|
446
|
+
"TypeAlias",
|
|
447
|
+
"Constructor",
|
|
448
|
+
"Property",
|
|
449
|
+
"Variable",
|
|
450
|
+
"Function",
|
|
451
|
+
"Method",
|
|
452
|
+
"Parameter",
|
|
453
|
+
"TypeParameter",
|
|
454
|
+
"Accessor",
|
|
455
|
+
"GetSignature",
|
|
456
|
+
"SetSignature",
|
|
457
|
+
"CallSignature",
|
|
458
|
+
"IndexSignature"
|
|
459
|
+
],
|
|
460
|
+
"lang": "en",
|
|
461
|
+
"lightHighlightTheme": "light-plus",
|
|
462
|
+
"logLevel": "Info",
|
|
463
|
+
"markdownItOptions": {
|
|
464
|
+
"html": true,
|
|
465
|
+
"linkify": true
|
|
466
|
+
},
|
|
467
|
+
"markdownLinkExternal": true,
|
|
468
|
+
"maxTypeConversionDepth": 30,
|
|
469
|
+
"modifierTags": [
|
|
470
|
+
"@alpha",
|
|
471
|
+
"@beta",
|
|
472
|
+
"@eventProperty",
|
|
473
|
+
"@experimental",
|
|
474
|
+
"@internal",
|
|
475
|
+
"@override",
|
|
476
|
+
"@packageDocumentation",
|
|
477
|
+
"@public",
|
|
478
|
+
"@readonly",
|
|
479
|
+
"@sealed",
|
|
480
|
+
"@virtual",
|
|
481
|
+
"@abstract",
|
|
482
|
+
"@class",
|
|
483
|
+
"@disableGroups",
|
|
484
|
+
"@enum",
|
|
485
|
+
"@event",
|
|
486
|
+
"@expand",
|
|
487
|
+
"@hidden",
|
|
488
|
+
"@hideCategories",
|
|
489
|
+
"@hideconstructor",
|
|
490
|
+
"@hideGroups",
|
|
491
|
+
"@ignore",
|
|
492
|
+
"@inline",
|
|
493
|
+
"@interface",
|
|
494
|
+
"@namespace",
|
|
495
|
+
"@function",
|
|
496
|
+
"@overload",
|
|
497
|
+
"@private",
|
|
498
|
+
"@protected",
|
|
499
|
+
"@showCategories",
|
|
500
|
+
"@showGroups",
|
|
501
|
+
"@useDeclaredType",
|
|
502
|
+
"@primaryExport",
|
|
503
|
+
"@alpha",
|
|
504
|
+
"@beta",
|
|
505
|
+
"@experimental",
|
|
506
|
+
"@eventProperty",
|
|
507
|
+
"@internal",
|
|
508
|
+
"@override",
|
|
509
|
+
"@packageDocumentation",
|
|
510
|
+
"@public",
|
|
511
|
+
"@readonly",
|
|
512
|
+
"@sealed",
|
|
513
|
+
"@virtual"
|
|
514
|
+
],
|
|
515
|
+
"navigation": {
|
|
516
|
+
"compactFolders": false,
|
|
517
|
+
"excludeReferences": false,
|
|
518
|
+
"includeCategories": true,
|
|
519
|
+
"includeFolders": true,
|
|
520
|
+
"includeGroups": true
|
|
521
|
+
},
|
|
522
|
+
"placeInternalsInOwningModule": true,
|
|
523
|
+
"plugin": [
|
|
524
|
+
"typedoc-plugin-remark",
|
|
525
|
+
"typedoc-plugin-missing-exports",
|
|
526
|
+
"typedoc-plugin-replace-text",
|
|
527
|
+
"typedoc-plugin-markdown",
|
|
528
|
+
"typedoc-plugin-mdn-links",
|
|
529
|
+
"typedoc-plugin-dt-links",
|
|
530
|
+
"typedoc-plugin-external-package-links",
|
|
531
|
+
"typedoc-plugin-rename-defaults",
|
|
532
|
+
"typedoc-plugin-coverage",
|
|
533
|
+
"typedoc-docusaurus-theme"
|
|
534
|
+
],
|
|
535
|
+
"preserveLinkText": true,
|
|
536
|
+
"preserveWatchOutput": false,
|
|
537
|
+
"readme": "none",
|
|
538
|
+
"replaceText": {
|
|
539
|
+
"inCodeCommentTags": true,
|
|
540
|
+
"inCodeCommentText": true,
|
|
541
|
+
"inMarkdownText": false,
|
|
542
|
+
"replacements": [
|
|
543
|
+
{
|
|
544
|
+
"pattern": "\\bTODO:",
|
|
545
|
+
"replace": "**TODO:**"
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
"pattern": "\\bFIXME:",
|
|
549
|
+
"replace": "**FIXME:**"
|
|
550
|
+
},
|
|
551
|
+
{
|
|
552
|
+
"pattern": "\\bError\\b",
|
|
553
|
+
"replace": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error"
|
|
554
|
+
}
|
|
555
|
+
]
|
|
556
|
+
},
|
|
557
|
+
"resolveUtilityTypes": true,
|
|
558
|
+
"sanitizeComments": false,
|
|
559
|
+
"showConfig": false,
|
|
560
|
+
"skipErrorChecking": false,
|
|
561
|
+
"sort": [
|
|
562
|
+
"source-order",
|
|
563
|
+
"alphabetical"
|
|
564
|
+
],
|
|
565
|
+
"sortEntryPoints": true,
|
|
566
|
+
"strikeDeprecatedPageTitles": true,
|
|
567
|
+
"suppressCommentWarningsInDeclarationFiles": true,
|
|
568
|
+
"theme": "markdown",
|
|
569
|
+
"treatValidationWarningsAsErrors": false,
|
|
570
|
+
"treatWarningsAsErrors": false,
|
|
571
|
+
"useCustomAnchors": true,
|
|
572
|
+
"useFirstParagraphOfCommentAsSummary": true,
|
|
573
|
+
"useHTMLAnchors": true,
|
|
574
|
+
"useHostedBaseUrlForAbsoluteLinks": false,
|
|
575
|
+
"useTsLinkResolution": true,
|
|
576
|
+
"validation": {
|
|
577
|
+
"invalidLink": true,
|
|
578
|
+
"invalidPath": true,
|
|
579
|
+
"notDocumented": false,
|
|
580
|
+
"notExported": false,
|
|
581
|
+
"rewrittenLink": true,
|
|
582
|
+
"unusedMergeModuleWith": true
|
|
583
|
+
},
|
|
584
|
+
"visibilityFilters": {
|
|
585
|
+
"@alpha": false,
|
|
586
|
+
"@beta": false,
|
|
587
|
+
"external": false,
|
|
588
|
+
"inherited": true,
|
|
589
|
+
"private": false,
|
|
590
|
+
"protected": false
|
|
591
|
+
}
|
|
592
|
+
}
|