tailwindcss/tsup.config.ts
2023-06-23 03:47:27 +02:00

16 lines
364 B
TypeScript

import { defineConfig } from "tsup";
export default defineConfig({
entry: ["src/index.ts"],
clean: true,
dts: true,
format: "cjs",
target: "node16",
esbuildOptions: (options) => {
options.footer = {
// https://github.com/evanw/esbuild/issues/1182#issuecomment-1011414271
js: "module.exports = module.exports.default;",
};
},
});