Each of our tsconfig.json inherits the root tsconfig.json. This root config currently contains the typedoc configuration too, including endPointStrategy: "packages".
This leads to each package in the repo having its own root-level typedoc config, which is causing typedoc to fail right now.
By moving the config to a typedoc.json at the root, we can continue inheriting tsconfig.json without accidentally inheriting the typedoc config.
Each of our
tsconfig.json
inherits the roottsconfig.json
. This root config currently contains the typedoc configuration too, includingendPointStrategy: "packages"
.This leads to each package in the repo having its own root-level typedoc config, which is causing typedoc to fail right now.
By moving the config to a
typedoc.json
at the root, we can continue inheritingtsconfig.json
without accidentally inheriting the typedoc config.