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