feat: add permission

This commit is contained in:
2025-03-22 12:48:22 +08:00
parent c0703c7c41
commit bc6df19c9c
7 changed files with 326 additions and 2 deletions

13
tsup.config.ts Normal file
View File

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