Files
QZMusic_PC/amll-local/packages/vue/tsdown.config.ts

18 lines
371 B
TypeScript
Raw Normal View History

import pluginBabel from "@rolldown/plugin-babel";
import { defineConfig } from "tsdown";
import { baseConfig } from "../../tsdown.base.ts";
export default defineConfig({
...baseConfig,
entry: { "amll-vue": "./src/index.ts" },
dts: {
tsgo: true,
tsconfig: "./tsconfig.dts.json",
},
plugins: [
pluginBabel({
plugins: ["@vue/babel-plugin-jsx"],
}),
],
});