9 lines
191 B
TypeScript
9 lines
191 B
TypeScript
import { defineConfig } from 'tsup';
|
|
|
|
import config from '@mixan/tsconfig/tsup.config.json' assert { type: 'json' };
|
|
|
|
export default defineConfig({
|
|
...(config as any),
|
|
minify: false,
|
|
});
|