Jack Harrhy

Results 5 comments of Jack Harrhy

gron also looks good for this usecase: https://github.com/tomnomnom/gron i'm also gonna plug my own: https://github.com/jackharrhy/meowj

> +1 to this feature. This would make the app so much better. > > > The functionality to do this now exist > > How do you enable it?...

Dirty fix, but if you want to simply silence type errors coming from `node_modules`, you can add: ```json { "compilerOptions": { "skipLibCheck": true }, } ``` to your tsconfig.json. After...

Ran into the above issue, tried going back to an older version of protobufjs to no luck, but thankfully found a nice workaround: ```ts import Long from "long"; import protobufjs...

```js let buttons = Array.from(document.querySelectorAll('input[class=p-checkbox__input]')); (async () => { for (let b of buttons) { console.log(b) b.click(); await new Promise(r => setTimeout(r, 100)); } })(); ``` you can also put...