babel-plugin-jsx/packages/babel-plugin-resolve-type/tsup.config.ts

10 lines
181 B
TypeScript
Raw Normal View History

2023-08-27 23:47:23 +08:00
import { defineConfig } from 'tsup';
export default defineConfig({
entry: ['src/index.ts'],
format: ['cjs', 'esm'],
dts: true,
target: 'node14',
platform: 'neutral',
});