Blixt
Blixt
I think this is currently impossible – I can't find any metadata about creatures (besides alive entities in the world) in the world's metadata.
It would be nice for very simple cases to not have this issue, for example: ```typescript declare function doStuff(name: string, age: number): void declare function doStuff(employeeId: number): void declare const...
This problem is not only about Vite, and this is typically not happening with other packages. As an example, using `immer` via JSPM (e.g. using the [Import Map Generator](https://generator.jspm.io/)) will...
JSPM is an import maps first approach to package management so it does support development builds and production builds, so the true solution might not be as simple as to...
The workaround described in this issue doesn't appear to work anymore in TypeScript 4.1 because it actually puts the `export` statement into the build output now, which fails evaluation in...
I'm seeing this too, also with useUIState(). Models will also sometimes go like "First I will … [tool1] Now let's … [tool2] Finally, we can … [tool3]" and the text...
I got the following error while trying to `pip install` this library (v0.4.1): ``` In file included from ../src/cpp/image.cpp:20: ../subprojects/pybind11-2.10.3/include/pybind11/pybind11.h:218:13: error: static assertion failed due to requirement 'expected_num_args(sizeof...(Args), argument_loader::args_pos >=...
TLDR: Use `moduleDetection: 3` as a workaround for now. --- I've been digging into the code in Monaco and it seems the compiler options are all passed through, so whether...
I just had the same issue with `biome.configurationPath`. `"/Users/blixt/src/my-repo/biome.json"` works, while `"${workspaceFolder}/biome.json"` results in this error: ``` 2025-07-20 18:05:29.246 [info] [Error - 6:05:29 PM] Biome couldn't find a configuration in...
Sure, here's an excerpt from my current `.vscode/settings.json` file with path variable expension that is being respected: ```jsonc { "bun.runtime": "${workspaceFolder}/.vscode/mise-tools/bun", "go.goroot": "${workspaceFolder}/.vscode/mise-tools/goRoot", "debug.javascript.defaultRuntimeExecutable": { "pwa-node": "${workspaceFolder}/.vscode/mise-tools/node" }, "python.defaultInterpreterPath": "${workspaceFolder}/.vscode/mise-tools/python",...