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
In https://npm.jsr.io/~/8/@jsr/std__fs/0.223.0.tgz, a relative import to ./_create_walk_entry.d.ts is resolved to _create_walk_entry.ts instead by tsc: microsoft/TypeScript#58353
To work around this, we should emit all .js and d.ts files into a separate folder.
The text was updated successfully, but these errors were encountered:
Fixes#462
To make this work, also bans publishing packages containing a top level
folder called `_dist`.
Also we now do not reference `.d.ts` files from other `.d.ts` files
using the `.d.ts` extension, because otherwise tsc gets upset. So we
instead use `.js` (even if the file does not exist!)
Also we emit source maps into separate files, because TSC doesn't
understand embedded source maps.
In
https://npm.jsr.io/~/8/@jsr/std__fs/0.223.0.tgz
, a relative import to./_create_walk_entry.d.ts
is resolved to_create_walk_entry.ts
instead bytsc
: microsoft/TypeScript#58353To work around this, we should emit all
.js
andd.ts
files into a separate folder.The text was updated successfully, but these errors were encountered: