Nikita

Results 85 comments of Nikita

I need help with some of the review comments

> chicken and egg problem I don't see it that way. First step should be to implement typechecking of throw types the same way as return types. Then add throw...

I only found this issue after the previous one was closed. My usecase was: I wanted to enforce that a handler function will throw only HttpErrors: ```ts type Handler =...

Maybe change the option so that instead of a string it's an object: ```ts { default: "always" | "never" | "ignore", inTryCatch?: "always" | "never" | "ignore", // undefined means...

@theengineear Import attributes are finished but CSS imports are not.

~~Will there be `bun serve` CLI command? Like there is `bun build` for `Bun.build()`?~~ Nevermind, there is `bun run index.html`

@gruhn But where do you get `runId` from?

I just did ```js let runId = 0 ``` and then ```js const dbName = `test-${runId++}` ```

I wonder if this is even possible to transpile considering that scope conflicts are resolved by proximity to the scope root: > `@scope` adds a new criterion to the CSS...