Files
babel-plugin-jsx/tsdown.config.ts
三咲智子 Kevin Deng b937287732 chore: emit dts by oxc
2025-08-10 09:05:18 +08:00

14 lines
291 B
TypeScript

import { defineConfig } from 'tsdown';
export default defineConfig({
workspace: [
'./packages/babel-plugin-jsx',
'./packages/babel-plugin-resolve-type',
],
entry: ['src/index.ts'],
format: ['cjs', 'esm'],
dts: { oxc: true },
target: 'es2015',
platform: 'neutral',
});