- Updated the check:workspace script to include end-to-end testing for the MCP package. - Added a new test:e2e script in the MCP server for running end-to-end tests. - Refactored controller import logic to support default exports from the agent-teams-controller. - Improved team deletion handling in IPC by ensuring team provisioning is stopped before deletion. - Introduced a function to resolve the real node binary path for better compatibility in Electron environments. - Enhanced task display in MemberCard and TaskDetailDialog components for improved user experience.
11 lines
204 B
TypeScript
11 lines
204 B
TypeScript
import { defineConfig } from 'tsup';
|
|
|
|
export default defineConfig({
|
|
entry: ['src/index.ts'],
|
|
format: ['esm'],
|
|
target: 'node20',
|
|
outDir: 'dist',
|
|
clean: true,
|
|
sourcemap: true,
|
|
dts: false,
|
|
});
|