mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-02-06 20:33:46 -05:00
16 lines
343 B
TypeScript
16 lines
343 B
TypeScript
import { defineConfig } from 'tsup';
|
|
|
|
export default defineConfig({
|
|
entry: ['src/index.ts'],
|
|
format: ['cjs', 'esm'],
|
|
target: 'es2020',
|
|
dts: true,
|
|
clean: true,
|
|
splitting: false,
|
|
minify: false,
|
|
sourcemap: true,
|
|
banner: {
|
|
js: '// <auto-generated>\n// This file was automatically generated. Do not edit manually.\n',
|
|
}
|
|
});
|