mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-19 16:32:58 +00:00
12 lines
213 B
TypeScript
12 lines
213 B
TypeScript
import { defineConfig } from 'tsup';
|
|
|
|
export default defineConfig({
|
|
target: 'es2018',
|
|
entry: ['src/index.ts'],
|
|
format: ['esm', 'cjs'],
|
|
dts: true,
|
|
splitting: false,
|
|
sourcemap: false,
|
|
clean: true,
|
|
});
|