Pete Gonzalez
Pete Gonzalez
😆 Looks like we're doing the same thing in [api-documenter-docusaurus-plugin](https://github.com/microsoft/rushstack-websites/tree/2c15c884f182ff0c1745e4d72207b82fedb47bb3/tools/api-documenter-docusaurus-plugin): [api-documenter-docusaurus-plugin/src/DocusaurusMarkdownFeature.ts](https://github.com/microsoft/rushstack-websites/blob/2c15c884f182ff0c1745e4d72207b82fedb47bb3/tools/api-documenter-docusaurus-plugin/src/DocusaurusMarkdownFeature.ts#L48) ```ts // Requires more investigation. HTML comments are ok, but the little empty // comments () that are inserted...
We could also improve the plugin APIs so that API Documenter plugins can override MarkdownEmitter behaviors (rather than relying on `String.replace()`). But you shouldn't have to author a plugin to...
## Is is a bug? Yes, `export type` is a relatively new TypeScript feature that is not handled very well in this case. ## Is it a priority? From the...
The [heft-webpack-basic-tutorial](https://github.com/microsoft/rushstack/tree/master/tutorials/heft-webpack-basic-tutorial) source maps actually don't work in Chrome. That sounds like a bug that needs to get fixed.
> there are no source map entries pointing at any dependencies in the mono-repo To expand on this, suppose there is a web application `example-app` that depends on another Rush...
Today we found that setting `"sourceRoot"` in **tsconfig.json** can be used to customize the path that is displayed in the debugger. For example, if I set `"sourceRoot": "example-app"` for one...
BTW if the source maps misrepresent the file paths too much, then when you are debugging Node.js or Jest, the debugger will not be able to find the real `.ts`...
> This is really interesting. Can you link to an example repo that uses this functionality so we can try it out? +1 Please show an example. Also, I'm curious...
> a parameter like `--json` or `--csv` or perhaps `--text` is actually specifying an API -- you're indicating what machine-readable format will be output, which requires not including extra lines...
BTW @elliot-nelson in this discussion we've been assuming that the motivation for suppressing the banner is to enable deserialization of the output. A different motivation would be if someone simply...