I have a .min.js bundle file which includes some CM6 that I’d like to use in a non-npm TypeScript project. I want to put a .d.ts file in front of it, but the problem is that the CM6 types are fragmented across a ton of different npm files/packages so it’s tedious to hunt down all the types needed to include in the .d.ts. Do you know if there’s a monofile generated at any point (i.e. .d.ts that is completely self contained with all CM6 types and no external dependencies)?
For example, pixi.js generates one I can grab in its npm package dist/pixi.js.d.ts
which contains all types in one huge file (https://www.npmjs.com/package/pixi.js?activeTab=code) which makes it easy to grab and use in non-npm environments.