Files
plane/silo/tsup.config.ts
Saurabh Kumar fab70fb63f [SILO-75] chore: Silo error handling and sentry configuration (#2105)
* chore: global error handler and code cleanup

* chore: global error handler and code cleanup

* sentry config setup

* fix sentry source map issue + workers error handling

* serve cjs on start

* remove --source-map serve on silo start

* sentry release version via docker config + remove next and add response handler
2025-01-07 20:37:23 +05:30

11 lines
220 B
TypeScript

import { defineConfig, Options } from "tsup";
export default defineConfig((options: Options) => ({
entry: ["src/start.ts"],
format: ["cjs", "esm"],
dts: true,
clean: false,
sourcemap: true,
...options,
}));