n8n/packages/frontend/@n8n/composables/tsup.config.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
215 B
TypeScript
Raw Normal View History

import { defineConfig } from 'tsup';
export default defineConfig({
entry: ['src/useDeviceSupport.ts'],
format: ['cjs', 'esm'],
clean: true,
dts: true,
cjsInterop: true,
splitting: true,
sourcemap: true,
});