Akseli Käppi

Results 5 comments of Akseli Käppi

This gets even more confusing with RTK Query. I have a similar situation where I use RTK on both backend and frontend. When using ESM, TypeScript can't locate declaration files...

Did you manage to resolve this? I am experiencing the same type of issue as you. Validation seems to be failing for arrays that are clearly arrays and objects that...

Ahh, that makes sense. Too bad our code has pretty random import chains and the code base is old enough that type imports were not a thing back then. Thanks...

I tested this a bit more and it seems like [this line](https://github.com/weavejester/ragtime/blob/master/jdbc/src/ragtime/jdbc.clj#L157) is the problem. The resauce call returns the same migration 4 times. 2 times from resources/migrations and 2...

I resolved the issue by using `:migrations (jdbc/load-directory "resources/migrations")` instead of `:migrations (jdbc/load-resources "migrations")})`. I guess there is a bug somewhere or maybe it's just in my system but this...