You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#574 was closed but not resolved. So here it is again with a rephrased explanation:
postgresjs uses an old Deno std lib version that does not pass deno check in newer Deno versions. This is problematic because I cannot update to a Deno version after 1.28.3 or else the CI/CD job fails because of the failing deno check.
Run deno check --import-map=vendor/import_map.json main.ts
Expected: No errors
Actual:
Check file:///<redacted>/main.ts
error: TS2367 [ERROR]: This comparison appears to be unintentional because the types 'rmdirOptions | undefined' and 'boolean' have no overlap.
if (options === false) {
~~~~~~~~~~~~~~~~~
at file:///<redacted>/vendor/deno.land/[email protected]/node/_fs/_fs_rmdir.ts:82:9
With that being the case, I don't want to kill my own energy by having typescript issues hanging around which I am not able to fix, which was the reason I closed the other issue too..
#574 was closed but not resolved. So here it is again with a rephrased explanation:
postgresjs uses an old Deno std lib version that does not pass
deno check
in newer Deno versions. This is problematic because I cannot update to a Deno version after 1.28.3 or else the CI/CD job fails because of the failingdeno check
.Steps to reproduce:
deno vendor main.ts
deno check --import-map=vendor/import_map.json main.ts
Expected: No errors
Actual:
Environment:
The text was updated successfully, but these errors were encountered: