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>
32 lines
493 B
TypeScript
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: [],
|
|
});
|