This commit is contained in:
2025-03-26 11:49:56 +08:00
commit a617a68e2f
8 changed files with 155 additions and 0 deletions

16
tsup.config.ts Normal file
View File

@@ -0,0 +1,16 @@
import { defineConfig } from 'tsup';
export default defineConfig({
entry: ['src/query-mark.ts'],
splitting: false,
sourcemap: false,
clean: true,
format: 'esm',
dts: true,
outDir: 'dist',
tsconfig: 'tsconfig.json',
define: {
IS_BROWSER: 'false',
},
});