| 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 | external: undefined, |
| 8 | deps: { |
| 9 | neverBundle: true, |
| 10 | }, |
| 11 | plugins: [StaleGuardRecorder()], |
| 12 | }) |
| 13 |