mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-04 21:04:37 +08:00
16 lines
287 B
TypeScript
16 lines
287 B
TypeScript
import { defineConfig, type UserConfig } from 'tsdown';
|
|
|
|
const config: UserConfig = {
|
|
entry: ['src/index.ts'],
|
|
sourcemap: true,
|
|
clean: false,
|
|
dts: true,
|
|
outDir: 'dist',
|
|
format: ['esm'],
|
|
banner: {
|
|
js: '#!/usr/bin/env node',
|
|
},
|
|
};
|
|
|
|
export default defineConfig(config);
|