feat: initial commit

This commit is contained in:
Menci
2026-01-01 03:40:41 +08:00
commit 631f8ed771
98 changed files with 14776 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import { defineConfig } from 'tsdown';
export default defineConfig({
entry: [
'./src/index.ts',
'./src/searcher/index.ts',
'./src/indexer/index.ts',
'./src/common/index.ts',
],
dts: true,
unused: true,
fixedExtension: true,
unbundle: true,
sourcemap: true,
});