UNPKG

playwright-mcp

Version:
14 lines (12 loc) 318 B
import { defineConfig } from 'tsup'; export default defineConfig({ env: { NODE_ENV: process.env.NODE_ENV || 'development', }, entry: ['src/server.ts', 'src/mcp/index.ts', 'src/mcp/toolbox.ts'], tsconfig: 'tsconfig.lib.json', splitting: true, format: ['cjs', 'esm'], bundle: true, clean: true, });