Skip to content

Commit e49d22e

Browse files
committed
Fix docsgen compilation
The docsgen tsconfig was referencing `tsconfig.base.json`, which specifies the `include` option for the primary project. As a result, the `compile:docs` script was building the library's code, and outputting it to `dist/docsgen`. This commit fixes this by overriding `include` in `docsgen/tsconfig.json`.
1 parent 664e2d5 commit e49d22e

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

docsgen/tsconfig.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,8 @@
88
"esnext",
99
"es6"
1010
]
11-
}
12-
}
11+
},
12+
"include": [
13+
"."
14+
]
15+
}

0 commit comments

Comments
 (0)