Files
klz-cables.com/.pnpm-store/v10/files/23/5ca7f7692c4b74eccea5363a83e91069199824a7f33eb20809014407c207b69570851b53fa86b284e4d004f7df09fab14caa11cf3dae4ca3e735ac7efe550a
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

13 lines
245 B
Plaintext

import { defineConfig } from 'tsup';
export default defineConfig((opts) => ({
clean: true,
dts: true,
entry: ['src/index.ts'],
format: ['cjs', 'esm'],
minify: !opts.watch,
sourcemap: true,
target: 'esnext',
outDir: 'dist',
}));