UNPKG

@swoft/core-architecture

Version:

Official compatibility package for @swoft/core-architecture → @swoft/core/architecture

12 lines (10 loc) 263 B
import { defineConfig } from 'tsup'; export default defineConfig({ entry: ['src/index.ts'], format: ['cjs', 'esm'], dts: false, // Disable TypeScript declarations for now clean: true, sourcemap: true, external: ['@swoft/core'], outDir: 'dist', });