mirror of
https://github.com/makeplane/plane.git
synced 2026-07-14 06:25:58 +02:00
* 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
11 lines
220 B
TypeScript
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,
|
|
}));
|