UNPKG

@mariozechner/create-app

Version:

CLI for creating deployable web applications with Docker, Caddy, and modern tooling

12 lines (11 loc) 242 B
import { defineConfig } from 'tsup' export default defineConfig({ entry: ['src/backend/server.ts'], format: ['esm'], outDir: 'dist/backend', clean: false, minify: false, sourcemap: true, target: 'node18', platform: 'node', })