mirror of
https://github.com/zoriya/v10.git
synced 2026-08-05 21:57:29 +00:00
18 lines
386 B
TypeScript
18 lines
386 B
TypeScript
import { defineConfig } from 'tsdown';
|
|
|
|
export default defineConfig({
|
|
entry: {
|
|
index: './src/index.ts',
|
|
// 'skins/frosted': './src/skins/frosted/index.ts',
|
|
// 'skins/minimal': './src/skins/minimal/index.ts',
|
|
},
|
|
platform: 'browser',
|
|
format: 'es',
|
|
sourcemap: true,
|
|
clean: true,
|
|
alias: {
|
|
'@': new URL('./src', import.meta.url).pathname,
|
|
},
|
|
dts: true,
|
|
});
|