Jacob Hummer
Jacob Hummer
This is actually one of the reasons I wanted #57 😅
the `@defaultExport` tag (while it is unrecognized) gets auto-unCamelCased into "Default Export" which is _pretty close_ to the idea of a "(default)" badge-like thing. ```js /** * @defaultExport * Hello...
i tried the suggestion to use the .modifierTags and i still cant do it lol idk what im doing wrong https://stackblitz.com/edit/stackblitz-starters-yt7mhp the js ```js import { Application, Converter, Comment }...
i got something to appear!  https://stackblitz.com/edit/stackblitz-starters-qfzmql?file=index.js js ```js import { Application, Converter, Comment, ReflectionFlag } from 'typedoc'; /** @param {Readonly} app */ export function load(app) { app.on(Application.EVENT_BOOTSTRAP_END, () =>...
this seems to work too and you can insert any text you want into it: ```js reflection.flags.push('goobledegook'); ``` https://stackblitz.com/edit/stackblitz-starters-23xcer?file=index.js  
another trick i figured out is that you can override the `.kind` and set it to `ReflectionKind.Property` which effectively forces it to be **on the module index page** instead of...
can also do things with that magic badge stuff like this:   
Thanks for your detailed response! > The solution to 1 is easy, "just" compile all the llvm and binaryen programs to WebAssembly using Emscripten. A detail is that there's a...
In the build-llvm.sh script, there's this proxyfs.js thing; what is that?  https://github.com/jprendes/emception/blob/366065547b1a59cb58011ed19aedce70c3bcbd2b/build-llvm.sh#L56
@jprendes What does the patch-ninja.sh script do? https://github.com/jprendes/emception/blob/master/patch-ninja.sh The gist that I was able to read from it is that it dynamically somehow creates a new llvm-box target in the...