You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
381 B
15 lines
381 B
import { defineConfig } from 'tsdown';
|
|
|
|
export default defineConfig({
|
|
clean: true,
|
|
dts: true,
|
|
entry: {
|
|
'cache/index': 'src/cache/index.ts',
|
|
'color/index': 'src/color/index.ts',
|
|
'constants/index': 'src/constants/index.ts',
|
|
'global-state': 'src/global-state.ts',
|
|
'store': 'src/store.ts',
|
|
'utils/index': 'src/utils/index.ts',
|
|
},
|
|
format: ['esm'],
|
|
});
|
|
|