Files
ui/tsdown.config.ts
enricobuehlerandClaude Fable 5 84f66e9fae style: apply current biome formatting across untouched files
Pure formatting churn (tabs, import order, line wrapping) produced by
`bunx biome check --write` under the currently-pinned biome version.
No behavior changes.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-20 18:34:11 +02:00

32 lines
493 B
TypeScript

import { defineConfig } from "tsdown";
export default defineConfig({
fixedExtension: false,
entry: ["./src/**/*.(ts|tsx)", "!./src/**/*.stories.(ts|tsx)"],
format: "esm",
copy: [
{
from: "./src/styles/*.css",
to: "./dist",
},
{
from: "./src/assets",
to: "./dist/",
},
],
platform: "browser",
dts: true,
exports: false,
deps: {
neverBundle: [
/\.mp3$/,
/\.wav$/,
/^react$/,
/^react\//,
/^react-dom$/,
/^react-dom\//,
],
},
plugins: [],
});