forked from miao-moe/QZMusic_PC
18 lines
371 B
TypeScript
18 lines
371 B
TypeScript
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"],
|
|
}),
|
|
],
|
|
});
|