2025-03-21 19:46:25 +08:00

14 lines
238 B
TypeScript

import { defineConfig } from 'tsup';
export default defineConfig({
entry: ['src/query-login.ts'],
splitting: false,
sourcemap: false,
clean: true,
format: 'esm',
dts: true,
outDir: 'dist',
tsconfig: 'tsconfig.json',
});