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

10 lines
181 B
TypeScript
Raw Normal View History

2024-01-21 17:25:13 +08:00
import { defineConfig } from 'tsup';
export default defineConfig({
entry: ['src/index.ts'],
format: ['cjs', 'esm'],
dts: true,
2024-01-21 17:26:26 +08:00
target: 'es2015',
2024-01-21 17:25:13 +08:00
platform: 'neutral',
});