UNPKG

lastfm-api-lib

Version:

A TypeScript library for interacting with the Last.fm API

11 lines (10 loc) 208 B
import { defineConfig } from 'tsup' export default defineConfig({ entry: ['src/index.ts'], format: ['cjs', 'esm'], dts: true, sourcemap: true, clean: true, splitting: false, target: 'es2022' })