Files
Agent-n8n/n8n-n8n-1.109.2/packages/@n8n/nodes-langchain/tsup.config.ts

12 lines
255 B
TypeScript
Raw Normal View History

2025-09-08 04:48:28 +08:00
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,
});