inline sourcemaps

This commit is contained in:
Chris Wanstrath 2026-01-10 07:16:37 -08:00
parent 8f68d2c9c3
commit de7e765f8d

View File

@ -154,7 +154,7 @@ export async function transpile(path: string): Promise<string> {
entrypoints: [path],
format: 'esm',
minify: false,
sourcemap: 'none',
sourcemap: 'inline',
})
if (!result.outputs[0]) throw new Error(`Failed to build ${path}`)