Deno check fail
Hi, I'm trying to use the effect packages with deno, most of them are working, but the sql-drizzle package don't:
This is the error message: once it references the
common.d.ts
another the common.d.cts
file of the same package and it does not know they are the same.
This works with node+typescript.
Please help me find out is this a deno bug, or an effect bug.
Thanks!4 Replies
I get the same error with TypeScript from an .mts file

compiler options:
sorry, my internet went out. A very terrible workaround is this:
But actually, this seems to work in regular TypeScript, but not in Deno. I'm going to look into what's going on here
GitHub
Deno can't handle importing types of an npm package with different ...
Given the following... import { integer, sqliteTable } from 'drizzle-orm/sqlite-core'; import type { sqliteTable as sqliteTableType } from 'drizzle-orm/sqlite-core' with { "res...
Thank you very much!