mirror of
https://github.com/zoriya/v10.git
synced 2026-08-05 21:57:29 +00:00
13 lines
201 B
TypeScript
13 lines
201 B
TypeScript
import { defineConfig } from 'tsdown';
|
|
|
|
export default defineConfig({
|
|
entry: 'src/index.ts',
|
|
platform: 'neutral',
|
|
format: 'es',
|
|
sourcemap: true,
|
|
clean: true,
|
|
dts: {
|
|
oxc: true,
|
|
},
|
|
});
|