Files
myeasycms-v2/packages/mcp-server/tsup.config.ts
Giancarlo Buomprisco f3ac595d06 MCP Server 2.0 (#452)
* MCP Server 2.0

- Updated application version from 2.23.14 to 2.24.0 in package.json.
- MCP Server improved with new features
- Migrated functionality from Dev Tools to MCP Server
- Improved getMonitoringProvider not to crash application when misconfigured
2026-02-11 20:42:01 +01:00

12 lines
215 B
TypeScript

import { defineConfig } from 'tsup';
export default defineConfig((options) => ({
entry: ['src/index.ts'],
outDir: 'build',
target: 'es2024',
dts: false,
clean: true,
format: ['cjs'],
...options,
}));