Files
babel-plugin-jsx/tsdown.config.ts
2025-10-07 00:35:38 +08:00

18 lines
351 B
TypeScript

import { defineConfig } from 'tsdown';
export default defineConfig({
workspace: [
'./packages/babel-plugin-jsx',
'./packages/babel-plugin-resolve-type',
],
entry: ['src/index.ts'],
dts: { oxc: true },
target: 'node20.19',
platform: 'neutral',
inlineOnly: [],
exports: {
devExports: 'dev',
},
fixedExtension: true,
});