30 lines
676 B
TypeScript
30 lines
676 B
TypeScript
import { defineConfig } from 'tsdown'
|
|
|
|
/**
|
|
* Build the index and worker as separate single-entry bundles. The worker must be a sibling
|
|
* file, while a multi-entry build would emit an unlisted shared chunk omitted by the package's
|
|
* exact `files` whitelist.
|
|
*/
|
|
export default defineConfig([
|
|
{
|
|
entry: ['lib/types/index.js'],
|
|
outDir: 'lib',
|
|
format: ['esm'],
|
|
platform: 'node',
|
|
target: 'es2024',
|
|
fixedExtension: false,
|
|
dts: false,
|
|
clean: false,
|
|
},
|
|
{
|
|
entry: ['lib/types/worker.js'],
|
|
outDir: 'lib',
|
|
format: ['esm'],
|
|
platform: 'node',
|
|
target: 'es2024',
|
|
fixedExtension: false,
|
|
dts: false,
|
|
clean: false,
|
|
},
|
|
])
|