mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
12 lines
215 B
TypeScript
12 lines
215 B
TypeScript
|
import { defineConfig } from 'tsup';
|
||
|
|
||
|
export default defineConfig({
|
||
|
entry: ['src/useDeviceSupport.ts'],
|
||
|
format: ['cjs', 'esm'],
|
||
|
clean: true,
|
||
|
dts: true,
|
||
|
cjsInterop: true,
|
||
|
splitting: true,
|
||
|
sourcemap: true,
|
||
|
});
|