Juan J. Jimenez-Anca

Results 109 comments of Juan J. Jimenez-Anca

And to complement's @mDibyo pick, this works for `omit` ```ts export function omit( Model: t.TypeC, keys: K[], ): t.TypeC { const allKeys = Object.keys(Model) as K[]; const keesToKeep = allKeys.filter((x)...

I found about the `MESSAGE_TYPE` symbol when fixing a bug in my frontend application. I use redux and some of the messages that come from server responses are directly stored...

@schmuli repo is spot on. Experiencing all same issues here, including using the `const enum` in a `.ts` file

Quickly reading the [source code](https://github.com/TypeStrong/ts-loader/blob/35b1b5634eececa914f977c31ae182ed88f24987/src/index.ts#L136) I can see that `transpileOnly` uses what looks like an `isolatedModule` api I'm guessing that `transpileOnly` overrides whatever configuration there is for `isolatedModules` in `tsconfig`....

Indeed you can, but that compiler flag has no effect in `ts-loader`. It's overriden by using the isolated module ts api whenever `transpileOnly` is on (or so it seems to...

I'm not sure at all!!! But I've tried disabling `isolatedModules` and ts-loader still inlines the `enum`. I've not digged into the source code, but I was looking at different api...

same issue here, these are my recent logs ``` time="2021-08-06T19:07:24Z" level=info msg="Getting items for group" backup=velero/postgres-test group=extensions/v1beta1 logSource="pkg/backup/item_collector.go:76" time="2021-08-06T19:07:24Z" level=info msg="Getting items for resource" backup=velero/postgres-test group=extensions/v1beta1 logSource="pkg/backup/item_collector.go:165" resource=ingresses time="2021-08-06T19:07:24Z" level=info...

I'm also experiencing this issue. I have the docker server running in an instance in a private network. The instance is exposed to the Internet using an nginx proxy in...

Hi @Carazyda! Thanks for looking into this. I believe I had enough requirements as it had 2 vCPU and 4GB RAM for only one user (me) I investigated a bit...

confirmed with bootstrap 4 (adding dropdown styles solved the issue)