fix security issues with smtp
This commit is contained in:
13
apps/smtp-server/tsup.config.ts
Normal file
13
apps/smtp-server/tsup.config.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
// eslint-disable-next-line import/no-extraneous-dependencies
|
||||
import { defineConfig, Options } from "tsup";
|
||||
|
||||
// eslint-disable-next-line import/no-default-export
|
||||
export default defineConfig((options: Options) => ({
|
||||
entry: ["src/server.ts"],
|
||||
format: ["cjs"],
|
||||
dts: true,
|
||||
minify: true,
|
||||
clean: true,
|
||||
injectStyle: true,
|
||||
...options,
|
||||
}));
|
Reference in New Issue
Block a user