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
When using outExtension: () => ({ js: ".jsx" }) Tsup doesn not generate source maps. The build works but the missing source maps lead to a very bad debugging experience for us. Would be great to have these for jsx outputs as well.
Longer Story
We're using SolidJS and need to preserve the JSX in library code of a big monorepo. The libs are built with tsup while the application is built with vite. The application uses vite-plugin-solid which expects all library code expose the unbuilt jsx and then builds the JSX in files with .jsx extensions in one batch. The build works but the missing source maps lead to a very bad debugging experience for us.
The out folder should contain index.jsx and index.jsx.map.
Actual behavior
The out folder only contains index.jsx and no index.jsx.map.
Narrowing it down
When commenting out the outExtension option in the tsup.config.ts the maps start appearing.
Additional info
It does not seem to be an upstream esbuild problem. I ran esbuild with the same config that tsup calls it with and the source maps were there. They aren't when run through tsup though. I think the issue might lie in the this code that's responsible for writing to disc
What's the problem?
When using
outExtension: () => ({ js: ".jsx" })
Tsup doesn not generate source maps. The build works but the missing source maps lead to a very bad debugging experience for us. Would be great to have these for jsx outputs as well.Longer Story
We're using SolidJS and need to preserve the JSX in library code of a big monorepo. The libs are built with tsup while the application is built with vite. The application uses
vite-plugin-solid
which expects all library code expose the unbuilt jsx and then builds the JSX in files with.jsx
extensions in one batch. The build works but the missing source maps lead to a very bad debugging experience for us.Reproduction
Now run tsup
Expected behavior
The
out
folder should containindex.jsx
andindex.jsx.map
.Actual behavior
The
out
folder only containsindex.jsx
and noindex.jsx.map
.Narrowing it down
When commenting out the
outExtension
option in thetsup.config.ts
the maps start appearing.Additional info
It does not seem to be an upstream esbuild problem. I ran esbuild with the same config that tsup calls it with and the source maps were there. They aren't when run through tsup though. I think the issue might lie in the this code that's responsible for writing to disc
tsup/src/plugin.ts
Lines 131 to 225 in 0328fd6
The text was updated successfully, but these errors were encountered: