mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-21 00:52:55 +00:00
10 lines
165 B
TypeScript
10 lines
165 B
TypeScript
import {defineConfig} from 'tsup';
|
|
|
|
export default defineConfig({
|
|
entry: ['src/index.ts'],
|
|
sourcemap: true,
|
|
clean: true,
|
|
format: 'esm',
|
|
outDir: 'lib',
|
|
});
|