File size: 225 Bytes
bf48b89
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import { defineConfig } from 'tsdown';

export default defineConfig({
    entry: ['./lib/pkg.ts'],
    shims: true,
    clean: true,
    dts: true,
    copy: ['lib/assets'],
    outDir: 'dist-lib',
    inlineOnly: false,
});