31 lines
725 B
TypeScript
31 lines
725 B
TypeScript
|
|
import { defineConfig } from 'tsdown'
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Build index and the invariant companion as separate single-entry bundles.
|
||
|
|
* Both entries import src/types.ts (the browser-safe subpath), so a
|
||
|
|
* multi-entry build emits a shared chunk the package's exact `files`
|
||
|
|
* whitelist omits; separate builds inline it.
|
||
|
|
*/
|
||
|
|
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/invariant.js'],
|
||
|
|
outDir: 'lib',
|
||
|
|
format: ['esm'],
|
||
|
|
platform: 'node',
|
||
|
|
target: 'es2024',
|
||
|
|
fixedExtension: false,
|
||
|
|
dts: false,
|
||
|
|
clean: false,
|
||
|
|
},
|
||
|
|
])
|