renkei
renkei
It's even worse. Let's say, I know that the Typescript Compiler can't help me here because of the wrong typings in the generated code but it's OK, because I will...
I don't think that this is an issue of TypeScript. The typings should just reflect the types that can occur at runtime, otherwise the typings at compile time don't make...
Ok, that's true, the type of getters and setters must be equal. If I look at my check list above then only point 7 (`Well-Known Types`) is affected by this...
On master, it is now line 524: https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/compiler/js/js_generator.cc#L524 Any update on this here?
To be honest, I like the value/name and name/value mapping of a typescript enum. Instead of limiting the typings to name/value mapping only, I would prefer to patch protoc to...
by the way, the grpc-web typescript support has some annoying bugs, see [682](https://github.com/grpc/grpc-web/issues/682) and [813](https://github.com/grpc/grpc-web/issues/813) and all other [TypeScript](https://github.com/grpc/grpc-web/labels/typescript) related issues.
I've the same issue. There is maybe a better workaround available: Download the winCodeSign.7z package manually. You can use the same URL as electron-builder is using: [https://github.com/electron-userland/electron-builder-binaries/releases/download/winCodeSign-2.6.0/winCodeSign-2.6.0.7z](https://github.com/electron-userland/electron-builder-binaries/releases/download/winCodeSign-2.6.0/winCodeSign-2.6.0.7z) Then extract the...
I've already fixed this with [PR877](https://github.com/kogosoftwarellc/open-api/pull/877). Unfortunately, there is no maintenance for months by the author of this project... Hopefully this will change again in future...
I've found out that downgrading glob from version 10 to 7 also fixes the issue. Currently, package `express-openapi` comes with a `"glob": "*"` dependency, changing this into `"glob": "7"` would...
I've updated my PR because I've probably found a more elegant solution. Instead of calling `replace(/\\/, '/')` to get rid of backslashes for routes on Windows, we can use the...