fix: Fix scripts/watch-node.mjs and use tsdown --watch.

This commit is contained in:
cpojer
2026-01-31 17:55:49 +09:00
parent 4b7406719c
commit 68ba1afb34
3 changed files with 24 additions and 14 deletions

12
tsdown.config.ts Normal file
View File

@@ -0,0 +1,12 @@
import { defineConfig } from 'tsdown'
export default defineConfig([
{
entry: 'src/index.ts',
platform: 'node',
},
{
entry: 'src/entry.ts',
platform: 'node',
},
])