Skip to content

Commit cd0bb45

Browse files
committed
Add basic TypeScript config for TypeDoc
1 parent 37e8e32 commit cd0bb45

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

tsconfig.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"compilerOptions": {
3+
"module": "nodenext",
4+
"allowJs": true,
5+
"checkJs": true,
6+
"outDir": "./dist",
7+
"target": "es2017"
8+
},
9+
"include": [
10+
"./*.js",
11+
"./*.mjs",
12+
"bids/**/*.js",
13+
"common/**/*.js",
14+
"parser/**/*.js",
15+
"schema/**/*.js",
16+
"spec_tests/**/*.js",
17+
"tests/**/*.js",
18+
"utils/**/*.js"
19+
]
20+
}

typedoc.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"entryPoints": ["./index.js"],
3+
"out": "typedocs",
4+
"includeVersion": true,
5+
"excludeExternals": true
6+
}

0 commit comments

Comments
 (0)