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
Due to current package.json configuration all packages import only dist folder. But source map files maps to src (or lib) directory. You can see it on unpkg.com at the first line: "sources":["../lib/index.ts"]. Thus source maps couldn't be loaded what makes them useless. It requires to changepackage.json#files record to include /dist and /src or /lib folders respectively into package distribution.
The text was updated successfully, but these errors were encountered:
Ah, just left a comment on the RLP issue linked above, of course relevant here as well. Please everyone answer there so that we have one unclustered discussion. Thanks!
Due to current
package.json
configuration all packages import onlydist
folder. But source map files maps tosrc
(orlib
) directory. You can see it on unpkg.com at the first line:"sources":["../lib/index.ts"]
. Thus source maps couldn't be loaded what makes them useless. It requires to changepackage.json#files
record to include/dist
and/src
or/lib
folders respectively into package distribution.The text was updated successfully, but these errors were encountered: