mirror of
https://github.com/vuejs/babel-plugin-jsx.git
synced 2025-10-09 14:35:51 +08:00
18 lines
351 B
TypeScript
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,
|
|
});
|