MHebes

Results 22 comments of MHebes

`1.0` is not technically a valid semver for what it's worth

I wasn't able to compile your example easily. Can you come up with a minimal example that doesn't involve linking to external libraries?

I think (part of) your issue is that this function: ``` template void to_json(nlohmann::json& j, now& obj) { obj.to_json(j); } ``` Is completely overriding all the default serializers e.g. for...

> The problem here is that typings of JSONSchema expect a subset of strings to be used as a type value (`"string"`, `"number"`, etc.). TypeScript, however, assumes that mutable strings...

It would be nice if `electron-store` automatically typed the `store` object based on the JSON schema. It is possible to generate a Typescript type statically based on a json schema...

I will second this old question. How do you handle merge conflicts between two open PRs that both add a changelog entry? Ideally without needing all the machinery that GitLab...

Since I made this issue I’ve learned a few things: 1. This will likely never be implemented in winmerge or any other textual line-based diff tool, since it inherently uses...

Not exactly this problem but for searchability: with MSVC I was seeing this issue because I did not define `/Zc:preprocessor` in the `compilerArgs` setting.

This appears to have been introduced in `[email protected]`. `[email protected]` does not exhibit this behavior, presumably because it does not have special-case handler types for `"connect"`, `"disconnect"`, etc.

Note that this also happens with a specifically typed `Socket` object: ```ts import { io, Socket } from "socket.io-client"; interface MyEvents { event: (data: any) => void; abc: (data: any)...