®️ chore: Remove Unnecessary sourcemapPathTransform in Rollup Config

This commit is contained in:
Danny Avila 2025-08-16 16:53:43 -04:00
parent 8bcdc041b2
commit 8d1d95371f
No known key found for this signature in database
GPG key ID: BF31EEB2C5CA0956

View file

@ -55,16 +55,6 @@ const cjsBuild = {
* Always include sources in sourcemap for better debugging
*/
sourcemapExcludeSources: false,
/**
* Use absolute paths in sourcemaps for better IDE support
*/
sourcemapPathTransform: (relativeSourcePath) => {
/**
* Convert to absolute path for better debugger support
*/
const path = require('path');
return path.resolve(relativeSourcePath);
},
},
external: [...Object.keys(pkg.dependencies || {}), ...Object.keys(pkg.devDependencies || {})],
preserveSymlinks: true,