10 lines
252 B
TypeScript
10 lines
252 B
TypeScript
|
|
import { defineConfig } from 'tsup';
|
||
|
|
import { runtimeOnlyPreset } from '../build-config/src/presets/plugin-tsup';
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
...runtimeOnlyPreset({
|
||
|
|
external: ['es-engine']
|
||
|
|
}),
|
||
|
|
tsconfig: 'tsconfig.build.json'
|
||
|
|
});
|