mirror of
https://github.com/zoriya/v10.git
synced 2026-08-10 08:08:10 +00:00
22 lines
533 B
TypeScript
22 lines
533 B
TypeScript
import { defineConfig } from 'tsdown';
|
|
|
|
export default defineConfig({
|
|
entry: {
|
|
index: './src/index.ts',
|
|
cli: './src/cli.ts',
|
|
'plugins/vite': './src/plugins/vite.ts',
|
|
'ast/index': './src/ast/index.ts',
|
|
'matchers/index': './src/matchers/index.ts',
|
|
'react/index': './src/react/index.ts',
|
|
'styles/index': './src/styles/index.ts',
|
|
'tailwind/index': './src/tailwind/index.ts',
|
|
},
|
|
platform: 'neutral',
|
|
format: 'es',
|
|
sourcemap: true,
|
|
clean: true,
|
|
hash: false,
|
|
unbundle: true,
|
|
dts: true,
|
|
});
|