Joe Pea
Joe Pea
The described order in which initializers added with `context.addInitializer()` execute was incorrect. Reference: https://github.com/tc39/proposal-decorators?tab=readme-ov-file#adding-initialization-logic-with-addinitializer Fixes #60251
### 🔍 Search Terms experimental jsdoc tag ### ✅ Viability Checklist - [X] This wouldn't be a breaking change in existing TypeScript/JavaScript code - [X] This wouldn't change the runtime...
Searching through issues can be tricky because there is no usage of labels. It would be helpful if issues could be marked with a package label, f.e. - `test-runner` -...
It would be great to have an Electron runner. Useful for testing web apps that also access Node.js APIs.
TODO: - [x] enable launching `playwrite._electron` experimental Electron launcher. - [ ] the window pops open, but it appears the tests are hung, maybe the context/page handling needs to be...
### Duplicates - [X] I have searched the existing issues ### Latest version - [X] I have tested the latest version ### Current behavior 😯 Use `npm create solid` to...
### Duplicates - [X] I have searched the existing issues ### Latest version - [X] I have tested the latest version ### Summary 💡 It would be nice for the...
### Duplicates - [X] I have searched the existing issues ### Latest version - [X] I have tested the latest version ### Summary 💡 As with other files such as...
```ts const img = document.createElement('img') // type error: img.onerror = (e: Event) => e ``` [playground](https://www.typescriptlang.org/play/?#code/MYewdgzgLgBAlgWwOYwLwwCYmAVwQUzCgDpgAnfAQynwFEAbfAogCgHJEk2BKAKF4D0AmAAkcACwD8k3p2Lh8ZMiDJoYLfAC4YtAG6Eo3NAD4Y+XkA) Only `Window.onerror` should have the alternative signature, but not elements. See: - https://developer.mozilla.org/en-US/docs/Web/API/Window/error_event -...
**feat:** improve the JSX type helpers: - `on*` event properties can now be specified to define event props for JSX. The README has an example, plus the `jsx-types-*.test.tsx` files show...