Jake Bailey
Jake Bailey
To be clear, TypeScript itself does not hang, tsc and the API all work fine. It's just our test suite (which is more or less custom + some use of...
As far as I can tell, that didn't seem to affect anything (so we must be resistent to the problems solved by that PR). I still need the `globalThis.setImmediate =...
I'll note that I used a Buffer and StringDecoder as they were easy for an example, but this happens for fetch's `Response#text()` and `fs.readFile(..., "utf8")` too (the latter is what...
Most likely you're going to need to run something like this to fix the tests, which snapshot replies to PRs. ```console $ AUTH_TOKEN=$(gh auth token) npm run update-all-fixtures ``` (But,...
Note that this probably also affects any other commands run via `fnm exec`, since `fnm` is running them directly.
https://github.com/TypeStrong/ts-loader/pull/1614 seems to be stalled in the ts-loader side, so I'm going to be "that guy" to keep the thread alive for a little longer until the official public API...
I am still experimenting, but one thing that has helped a little is: - Following/using https://pyperf.readthedocs.io/en/latest/system.html, e.g. setting up a machine where a core is isolated. But if you want...
Er, performance stuff for TypeScript? Or this issue specifically? I'm not working on anything for webpack, no.
@typescript-bot ping
Answering directly first: > * How do you usually run ESLint inside the repo? Is it one `npx eslint .` that lints the entire repo? Or are you always linting...