Cymaera
Cymaera
### Describe the problem The [Explicit Resource Management API](https://github.com/tc39/proposal-explicit-resource-management) is nearing Stage 4 and is implemented in TypeScript 5.2 I propose that Svelte 5 make use of patterns added by...
### Check for existing issues - [x] Completed ### Describe the bug / provide steps to reproduce it Syntax highlighting is broken when using string interpolation inside Svelte templates. ![Screenshot...
**Is your feature request related to a problem? Please describe.** TypeScript has a setting for enabling project wide diagnostics. It gives us error messages and refactoring capabilities for files that...
### Describe the problem In previous versions of Svelte, reassigning objects to a store or variable will trigger an update. For example, this will log to the console every second....
### Describe the bug Consider the following: ```svelte const options = [ {text: "Text 1"}, {text: "Text 2"}, {text: "Text 3"}, ] let selected = $state(options[0]) {#each options as option}...
It is common for IDEs and game-engine editors to specify resources using URIs or file paths. To access a deeply nested file, we need to call `getFileHandle` and `getDirectoryHandle` recursively....