-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathtsc.package.docs.json
More file actions
28 lines (27 loc) · 687 Bytes
/
tsc.package.docs.json
File metadata and controls
28 lines (27 loc) · 687 Bytes
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
/**
** This file extends the project root tsconfig.json file for use with
** typedoc at the package level.
**
** Use this file to exert some control over how typedoc generates
** package-specific documentation.
*/
{
"$schema": "https://json.schemastore.org/tsconfig.json",
"extends": "./tsconfig.json",
"include": ["types/**/*", "src/**/*", "test/**/*"],
"exclude": [
"**/dist/**/*",
"**/.next/**/*",
"**/.wrangler/**/*",
"**/test/fixtures/**/*",
"**/node_modules/**/*",
"packages/**/*",
"packages/**/.*",
"**/*.ignore",
"**/*.ignore/**/*",
"**/ignore.*",
"**/ignore.*/**/*",
"**/*.ignore.*",
"**/*.ignore.*/**/*"
]
}