8 lines
199 B
Plaintext
8 lines
199 B
Plaintext
|
|
import { defineConfig } from 'tsup';
|
||
|
|
import { pluginPreset } from '@esengine/build-config/presets/tsup';
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
...pluginPreset(),
|
||
|
|
tsconfig: 'tsconfig.build.json'
|
||
|
|
});
|