Skip to content
This repository was archived by the owner on Jan 13, 2025. It is now read-only.

Commit 1d02eb2

Browse files
committed
fix typedoc config
1 parent a1e15b1 commit 1d02eb2

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
/coverage/
33
/node_modules/
44
/lib/
5+
/docs/

package.json

+1-5
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,8 @@
4848
"docs": "shx rm -rf docs && typedoc",
4949
"eslint": "eslint src/ --ext .ts",
5050
"jsdoc": "jsdoc -c jsdoc/conf.json",
51+
"pages": "gh-pages --dist docs --dotfiles",
5152
"prepare": "npm run build",
5253
"test": "npm run build && mocha -u tdd"
53-
},
54-
"typedocOptions": {
55-
"entryPoints": "./src/Layout.ts",
56-
"out": "docs",
57-
"readme": "README.md"
5854
}
5955
}

tsconfig.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,10 @@
1515
"isolatedModules": true
1616
},
1717
"include": ["src"],
18-
"exclude": ["node_modules"]
18+
"exclude": ["node_modules"],
19+
"typedocOptions": {
20+
"entryPoints": ["./src/Layout.ts"],
21+
"out": "docs",
22+
"readme": "README.md"
23+
}
1924
}

0 commit comments

Comments
 (0)