mirror of
https://github.com/vuejs/babel-plugin-jsx.git
synced 2024-11-15 16:29:16 +08:00
10 lines
181 B
TypeScript
10 lines
181 B
TypeScript
|
import { defineConfig } from 'tsup';
|
||
|
|
||
|
export default defineConfig({
|
||
|
entry: ['src/index.ts'],
|
||
|
format: ['cjs', 'esm'],
|
||
|
dts: true,
|
||
|
target: 'node14',
|
||
|
platform: 'neutral',
|
||
|
});
|