David Herges

Results 31 comments of David Herges

Code: ```ts export class User { public login: string; public password: string; } export const USER = new InjectionToken('user'); @Injectable({ providedIn: 'root' }) export class TestLibService { constructor( @Inject(USER) private...

Are you trying to include generated `*.js` source files in the compilation? Unfortunately, there is no good solution to it right now. Should the generated sources be written to the...

Don't think its possible. [`new Worker()`](https://developer.mozilla.org/en-US/docs/Web/API/Worker/Worker#Parameters) requires a URL and that can only be done by the app.

Related: - https://github.com/Microsoft/TypeScript/issues/4433 - https://github.com/TypeStrong/dts-bundle

+1 :+1: @ewencp also works in multi machine set up :100:

Hello @JeromeJu I rebased the branch to latest main branch. Could you take a look?

There is a rather "slim" implementation of the `graphql-transport-ws` protocol in Kotlin... https://github.com/Netflix/dgs-framework/blob/master/graphql-dgs-subscriptions-websockets/src/main/kotlin/com/netflix/graphql/dgs/subscriptions/websockets/WebsocketGraphQLTransportWSProtocolHandler.kt @oliemansm do you have some news? wdyt of making it work with annotated `@ServerEndpoint` classes? Like this......

Ah yes, deserialization breaks with non-default constructors ...

Hello @aaron-prindle I rebased to latest main branch. Could you take a look?