Skip to content

Commit 3c1cf93

Browse files
Fix typedoc
1 parent 17cbe84 commit 3c1cf93

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

.github/workflows/docs.yml

+9-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,15 @@ jobs:
1818
- name: Install Package dependencies
1919
run: npm ci
2020
- name: Build with TypeDoc
21-
run: typedoc --excludeNotExported --excludePrivate --out docs src
21+
run: |
22+
typedoc \
23+
--excludeNotExported \
24+
--excludePrivate \
25+
--excludeExternals \
26+
--externalPattern "node_modules/**" \
27+
--readme README.md \
28+
--out docs \
29+
src
2230
- name: Deploy to Github Pages
2331
uses: JamesIves/github-pages-deploy-action@releases/v3
2432
with:

tsconfig.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@
77
"rootDir": "src",
88
"downlevelIteration": true,
99
"removeComments": true,
10-
"strictNullChecks": true
10+
"strictNullChecks": true,
11+
"baseUrl": "src"
1112
},
12-
"include": ["src/**/*"],
13-
"exclude": ["node_modules", "**/*.spec.ts"]
13+
"include": ["src/**/*", "spec/**/*"],
14+
"exclude": ["node_modules"]
1415
}

0 commit comments

Comments
 (0)