ArtemM
ArtemM
@moonmeister according to [rfc](https://www.ietf.org/rfc/rfc1738.txt) the `[` and `]` characters must always be encoded ([stackoverflow](https://stackoverflow.com/a/40583/17065390)). But it looks like browsers (like chrome) and node-fetch just ignore that rule and send `[`...
@moonmeister actually it goes even deeper. The thing is that fastify itself handles it wrongly. I created an [issue](https://github.com/fastify/fastify/issues/3356) for fastify and described the problem. When the fastify issue is...
Created minimum reproduction [repo](https://github.com/mav-rik/rollup-plugin-typescript2-issue-433)
@agilgur5 my [repro](https://github.com/mav-rik/rollup-plugin-typescript2-issue-433) helped me to narrow down the issue. I found out that only when I set plugin option `check: false` the issue occurs for TS and Vue files....