Andrew Bradley
Andrew Bradley
Is this due to the breaking change in node 20, where they moved esm loaders to a different thread?
Are you able to use the `-S` flag to `/usr/bin/env`? Nowadays, most Unix environments support it. https://typestrong.org/ts-node/docs/usage/#shebang
That's a bummer. I'm leaning towards making ESM enabled by default in v11, so then `ts-node-transpile-only` would do the trick.
> `error TS5023: Unknown compiler option 'moduleSuffixes'.` That error comes from the TypeScript compiler. You can check the version of TS that ts-node is using: ``` ts-node -vvv ```
A quick note about the short circuit logic: we *always* return the short circuit flag even when we *don't* short circuit. That flag doesn't trigger short-circuiting, it just tells node...
I updated the benchmark results: https://github.com/cspotcode/source-map-performance-demo#example-output Async stack traces still render incorrectly. But node 19 resolved the performance issue with large sourcemaps.
Hitbox adjustment used to entirely skip rotation adjustments when rotation was zero. Did you benchmark to check how fast it was to have a sprite that supported rotation but never...
I see > we should use the bundled font solution Would you mind re-titling #1011 to say that, to describe briefly what must happen? Is the task to bundle 3...
> Go back to old approach: the abbreviated model + links to the web site It can be more than abbreviated, it can be a single link to the website...
Another thing: Style guidance for magic methods, based on how they emit in sphinx w/prettyspecialmethods. Draw inspiration from python docs: https://docs.python.org/3/library/stdtypes.html#dict > `list(d)` > Return a list of all the...