forked from miao-moe/QZMusic_PC
9 lines
227 B
TypeScript
9 lines
227 B
TypeScript
|
|
import { defineConfig } from "tsdown";
|
||
|
|
import { baseConfig } from "../../tsdown.base.ts";
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
...baseConfig,
|
||
|
|
entry: { "amll-ttml": "./src/index.ts" },
|
||
|
|
dts: { tsconfig: "./tsconfig.app.json" },
|
||
|
|
});
|