-
-
Notifications
You must be signed in to change notification settings - Fork 265
Open
Description
Hello,
Putting "watch": "tsup --watch", in my package.json scripts and running it only does the build and leave right after insead of watching for changes.
Tsup output shows "CLI Running in watch mode".
tsup.config.ts:
import { defineConfig } from 'tsup';
import { EXECUTABLE_NAME } from './src/consts';
export default defineConfig({
entry: {
[EXECUTABLE_NAME]: 'src/index.ts',
},
target: 'node22',
format: 'cjs',
outDir: '.',
treeshake: true,
// minify: true,
});Metadata
Metadata
Assignees
Labels
No labels