You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Chart.js has been using JS Doc since the beginning, but more recently has added hand coded type declarations. You mentioned the other day that TypeDoc can use type declarations. I wanted to try this since I think it'd result in better typed docs (most of the types from the JS Doc end up as any and the type declarations are fairly fleshed out so should be better)
I set "entryPoints": ["types/index.esm.d.ts"], and got:
Warning: Unable to locate entry point: types/index.esm.d.ts
I was wondering if you had any ideas if I might be doing something wrong
Steps to reproduce
git clone https://github.com/benmccann/Chart.js
cd Chart.js
git checkout typedoc-upgrade
npm install
Description
I just sent a PR to upgrade Chart.js to 0.20.9! 🎉
Chart.js has been using JS Doc since the beginning, but more recently has added hand coded type declarations. You mentioned the other day that TypeDoc can use type declarations. I wanted to try this since I think it'd result in better typed docs (most of the types from the JS Doc end up as
any
and the type declarations are fairly fleshed out so should be better)I set
"entryPoints": ["types/index.esm.d.ts"],
and got:I was wondering if you had any ideas if I might be doing something wrong
Steps to reproduce
Change
typedocOptions
intsconfig.json
to:Run
npx typedoc
The text was updated successfully, but these errors were encountered: