Skip to content

Commit 70eb9fc

Browse files
authored
chore(typedoc): move root typedocOptions to typedoc.json (#3144)
1 parent f7fd1f3 commit 70eb9fc

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

Diff for: tsconfig.json

+1-14
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,5 @@
2020
"target": "es5"
2121
},
2222
"include": ["packages/", "lib/"],
23-
"exclude": ["node_modules/", "**/*.spec.ts"],
24-
"typedocOptions": {
25-
"readme": "README.md",
26-
"mode": "modules",
27-
"out": "docs",
28-
"exclude": ["**/node_modules/**", "**/*.spec.ts"],
29-
"excludeExternals": true,
30-
"name": "AWS SDK for JavaScript v3",
31-
"ignoreCompilerErrors": true,
32-
"theme": "minimal",
33-
"hideGenerator": true,
34-
"clientDocs": "clients/{{CLIENT}}/docs",
35-
"plugin": ["typedoc-plugin-lerna-packages", "@aws-sdk/core-packages-documentation-generator"]
36-
}
23+
"exclude": ["node_modules/", "**/*.spec.ts"]
3724
}

Diff for: typedoc.json

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"clientDocs": "clients/{{CLIENT}}/docs",
3+
"exclude": ["**/node_modules/**", "**/*.spec.ts"],
4+
"excludeExternals": true,
5+
"hideGenerator": true,
6+
"ignoreCompilerErrors": true,
7+
"mode": "modules",
8+
"name": "AWS SDK for JavaScript v3",
9+
"out": "docs",
10+
"plugin": ["typedoc-plugin-lerna-packages", "@aws-sdk/core-packages-documentation-generator"],
11+
"readme": "README.md",
12+
"theme": "minimal"
13+
}

0 commit comments

Comments
 (0)