mirror of
https://github.com/lqtmcstudio/QZMusic_PC.git
synced 2026-08-19 06:53:23 +08:00
- 将AMLL Clone到本以地进行修复和优化(emm虽然这很不优雅但是暂时无时间做子模块和Fork) - 修复在当前播放歌词行不可见的视口Seek会出现滚动偏移的问题
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"],
|
|
}),
|
|
],
|
|
});
|