Felix Becker
Felix Becker
I'd imagine try to make the types match those in `@types/express` as closely as possible. It seems to have something to do with overloads. While it is not tied to...
To be clear, I was suggesting to just copy the interfaces for the handlers so they match in how they are defined (call signatures, overloads, etc) but replace anything `express`-specific
What you're looking for is `finally`
choose one: **co-style** ``` js co(function *() { const db = yield DB.connect(); try { yield db.query(...); // do the job, might throw in case of error } finally {...
> I think it's a matter of configuration. By default, tabs are set to size of 4 spaces, not two. > > Try using tab characters, or 4 spaces, and...
This would be awesome. Edge extensions are almost the same code as Chrome extensions. Just instead of global `chrome` object you use `browser` etc. Very easy guides on converting Chrome...
This would be awesome.
You can do code fencing with backticks but you cannot specify the language for syntax highlighting :(
I'd really like to use the plugin without having to create empty dummy files and dynamic imports, I just want `MiniCssExtractPlugin` to output 2 files, one for `(prefers-color-scheme: light)` and...
> @felixfbecker I understand it's not convenient to import empty files just to get populated by the plugin. Unfortunately I've not found a better way yet to integrate the emitted...