mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 09:36:44 +00:00
12 lines
255 B
TypeScript
12 lines
255 B
TypeScript
import { defineConfig } from 'tsup';
|
|
|
|
export default defineConfig({
|
|
entry: ['{credentials,nodes,test,types,utils}/**/*.ts', '!**/*.d.ts', '!**/*.test.ts'],
|
|
format: ['cjs'],
|
|
clean: true,
|
|
dts: false,
|
|
bundle: false,
|
|
sourcemap: true,
|
|
silent: true,
|
|
});
|