chore: migrate to TSUp (#446)

* chore: migrate to TSUp

* chore: fix build
This commit is contained in:
Corbin Crutchley
2023-09-07 17:54:16 -07:00
committed by GitHub
parent 081a22896e
commit 15d4af9570
18 changed files with 216 additions and 998 deletions

View File

@@ -0,0 +1,9 @@
// @ts-check
import { defineConfig } from 'tsup'
import { legacyConfig, modernConfig } from '../../scripts/getTsupConfig.js'
export default defineConfig([
modernConfig({ entry: ['src/*.ts'] }),
legacyConfig({ entry: ['src/*.ts'] }),
])