13 lines
204 B
TypeScript
13 lines
204 B
TypeScript
import { defineConfig } from 'tsdown'
|
|
|
|
export default defineConfig([
|
|
{
|
|
entry: ['./src/run.ts'],
|
|
inlineOnly: [],
|
|
platform: 'node',
|
|
dts: true,
|
|
unused: true,
|
|
publint: true,
|
|
},
|
|
])
|