Timo Kämäräinen

Results 25 comments of Timo Kämäräinen

I was going to open an issue about this but then I figured it's such an easy fix I'll just do the PR. Basically the types as they are now...

I just ran into this issue too. Took me a while to understand that the problem was actually in gulp-typescript and not in my tsconfig. Any updates on this?

I ran into this with [xstate](https://github.com/davidkpiano/xstate). The types work with 3.7.5 but upgrading to 3.8.2 gives `error TS2589: Type instantiation is excessively deep and possibly infinite.` I made a quick...

It seems that `@babel/traverse` v7.17.10 has only this one [commit](https://github.com/babel/babel/commit/3f1bd8ec352abf48b05e75c762a50d61876bbcf6) which is probably the cause for this - or then the minify plugin needs to be updated somehow to accommodate...

> Unfortunately this project appears to be unmaintained (the last commit was in August of 2020), so looking into other minifiers might also not be a bad idea. This is...

> i noticed that adding the "dom" lib to tsconfig.json makes the compile error go away. as a workaround this might be good enough, but i'd very much prefer not...

> well.. with node 18 you'd probably not need node-fetch anyway Yes, I am eagerly awaiting for the AWS Lambda runtime support for Node 18. In the meantime I'm thinking...

I think that the `TextStyle` should have an optional `direction` field to control the `CanvasRenderingContext2D` text rendering: https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/direction

Here's code to reproduce: ```js const db = require('dynamodb-local'); async function test() { for (let i = 0; i < 11; i++) { await db.launch(8000, null, ['-inMemory'], true); db.stop(8000); }...

Actually now that I look at the repo code it seems that there is a standalone installer for NW.js. Maybe that already has the features I mentioned.