diff options
| author | Adam Malczewski <[email protected]> | 2026-04-02 02:22:36 +0900 |
|---|---|---|
| committer | Adam Malczewski <[email protected]> | 2026-04-02 02:22:36 +0900 |
| commit | 738732db20d827c4a305434a82c6464f3ebaf65d (patch) | |
| tree | baa0c9eddc72660342d3d3266ed5262f100030a3 /tsup.config.ts | |
| download | music-bot-738732db20d827c4a305434a82c6464f3ebaf65d.tar.gz music-bot-738732db20d827c4a305434a82c6464f3ebaf65d.zip | |
Diffstat (limited to 'tsup.config.ts')
| -rw-r--r-- | tsup.config.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tsup.config.ts b/tsup.config.ts new file mode 100644 index 0000000..81e74f1 --- /dev/null +++ b/tsup.config.ts @@ -0,0 +1,11 @@ +import { defineConfig } from 'tsup'; + +export default defineConfig({ + entry: ['src/index.ts'], + format: ['cjs'], + target: 'es2022', + outDir: 'dist', + clean: true, + sourcemap: true, + splitting: false, +}); |
