12 lines
192 B
TypeScript
12 lines
192 B
TypeScript
import { defineConfig } from 'tsdown'
|
|
|
|
export default defineConfig({
|
|
entry: {
|
|
index: 'src/index.ts',
|
|
v2: 'src/v2.ts',
|
|
},
|
|
sourcemap: true,
|
|
unused: true,
|
|
inlineOnly: false,
|
|
})
|