2
0
mirror of https://github.com/vuejs/babel-plugin-jsx.git synced 2025-03-13 14:14:40 +08:00
2024-01-21 17:26:26 +08:00

10 lines
181 B
TypeScript

import { defineConfig } from 'tsup';
export default defineConfig({
entry: ['src/index.ts'],
format: ['cjs', 'esm'],
dts: true,
target: 'es2015',
platform: 'neutral',
});