mirror of
https://github.com/vuejs/babel-plugin-jsx.git
synced 2025-08-13 18:53:19 +08:00
14 lines
291 B
TypeScript
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',
|
|
});
|