12 lines
243 B
TypeScript
12 lines
243 B
TypeScript
import { defineConfig } from 'tsdown'
|
|
|
|
export default defineConfig({
|
|
copy: [
|
|
{ from: 'src/files', to: 'dist' },
|
|
{ from: 'src/index.css', to: 'dist' },
|
|
],
|
|
entry: ['src/index.ts'],
|
|
external: ['./index.css'],
|
|
unbundle: true,
|
|
})
|