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
The build of this code base that is published to npm contains .map files with reference to the src directory. The src directory is not published to npm which means that frontend tooling like Vite send out many Warnings anytime this package is used.
look in dist/esm/src/main.js.map, you will see the following JSON
The build of this code base that is published to npm contains
.map
files with reference to the src directory. The src directory is not published to npm which means that frontend tooling like Vite send out many Warnings anytime this package is used.look in
dist/esm/src/main.js.map
, you will see the following JSONNote that the "sources" property refers to
../../../src/main.ts
. That file is not published to npm, hence the warnings from ViteThe text was updated successfully, but these errors were encountered: