David Alsh

Results 74 comments of David Alsh

`macOS 10.12.6` `node v8.4.0` `ng CLI 1.3.0` I get three different issues, all of which appear seemingly randomly. `ng serve` works perfectly. I am unable to run `ng build`, `ng...

Can confirm this is an issue with stable TypeScript 4.4.2. If a developer was to create a new rollup + typescript project today it would hang on compilation.

The thing I like about yaml is that it's not foreign to anyone and it will allow for additional configuration to be added for things like the linter or the...

Good question. It's actually a bit tricky. To start with, all builtin types are references. ```typescript let a: number = 0 a.increment() // mutate the reference to a ``` Let's...

Though the return type irks me. ```typescript function largest(read A x: number, read A y: number): A number {} ``` Specifically ```typescript ): A number {} ``` We could have...

Due to the large variation of authentication methods, it's difficult to provide a generalised solution. For example you could write an entire middleware dedicated to the OAuth2 OpenID Connect flow,...

Yes, if you return a promise in a middleware/handler, the router will wait for the promise to resolve before moving onto the next handler in the chain

Here's a sandbox with it using promises https://codesandbox.io/s/keen-carson-hmrgh

Hey thanks for your issue. I certainly feel it's an area that needs more thought in this specification. > There are also normal OOP interfaces [...] This is restrictive This...

The repo is actively maintained. I ran into some issues surrounding nested routers with Svelte and that kicked off some internal refactoring. I'll be revisiting Svelte and the docs soon