inikulin / parse5

HTML parsing/serialization toolset for Node.js. WHATWG HTML Living Standard (aka HTML5)-compliant.
MIT License
3.68k stars 236 forks source link

fix: use typedoc config to avoid accidental inheritance #1287

Closed 43081j closed 1 month ago

43081j commented 1 month ago

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.