forked from tapjs/tapjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypedoc.json
34 lines (34 loc) · 840 Bytes
/
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
{
"entryPoints": ["src/*"],
"name": "Node TAP",
"navigationLinks": {
"GitHub": "/~https://github.com/tapjs/tapjs",
"node-tap.org": "https://node-tap.org/"
},
"entryPointStrategy": "packages",
"includeVersion": true,
"readme": "./README.md",
"customCss": "./typedoc.css",
"darkHighlightTheme": "dark-plus",
"visibilityFilters": {
"protected": false,
"private": false,
"inherited": true,
"external": false
},
"compilerOptions": {
"jsx": "react",
"declaration": true,
"declarationMap": true,
"inlineSources": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "nodenext",
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"target": "es2022",
"module": "nodenext"
}
}