10 lines
208 B
TypeScript
10 lines
208 B
TypeScript
import {defineConfig} from 'tsup';
|
|
|
|
export default defineConfig({
|
|
format: ['cjs', 'esm'],
|
|
entry: ['./src/index.ts'],
|
|
dts: true,
|
|
shims: true,
|
|
skipNodeModulesBundle: true,
|
|
clean: true
|
|
}) |