| 1 | import { defineConfig } from 'tsdown' |
| 2 | import { StaleGuardRecorder } from 'tsdown-stale-guard' |
| 3 | import baseConfig from '../../tsdown.config.ts' |
| 4 | |
| 5 | export default defineConfig({ |
| 6 | ...baseConfig, |
| 7 | entry: { |
| 8 | index: 'src/index.ts', |
| 9 | core: 'src/core.ts', |
| 10 | fs: 'src/fs.ts', |
| 11 | utils: 'src/utils.ts', |
| 12 | }, |
| 13 | plugins: [StaleGuardRecorder()], |
| 14 | }) |
| 15 |