n8n/packages/@n8n/chat/build.config.js
Alex Grozav af49e95cc7
feat: Add Chat Trigger node (#7409)
Signed-off-by: Oleg Ivaniv <[email protected]>
Co-authored-by: Jan Oberhauser <[email protected]>
Co-authored-by: Jesper Bylund <[email protected]>
Co-authored-by: OlegIvaniv <[email protected]>
Co-authored-by: Deborah <[email protected]>
Co-authored-by: Jan Oberhauser <[email protected]>
Co-authored-by: Jon <[email protected]>
Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <[email protected]>
Co-authored-by: Michael Kret <[email protected]>
Co-authored-by: Giulio Andreini <[email protected]>
Co-authored-by: Mason Geloso <[email protected]>
Co-authored-by: Mason Geloso <[email protected]>
Co-authored-by: Mutasem Aldmour <[email protected]>
2024-01-09 13:11:39 +02:00

22 lines
339 B
JavaScript

import { defineBuildConfig } from 'unbuild';
export default defineBuildConfig({
entries: [
{
builder: 'mkdist',
format: 'esm',
input: './src',
outDir: './tmp/lib',
},
{
builder: 'mkdist',
format: 'cjs',
input: './src',
outDir: './tmp/cjs',
},
],
clean: true,
declaration: true,
failOnWarn: false,
});