modify stripe client

This commit is contained in:
Yudi Xiao
2025-10-13 17:02:16 +08:00
commit 2ff4a999fa
18 changed files with 4679 additions and 0 deletions

12
build.config.ts Normal file
View File

@@ -0,0 +1,12 @@
import { defineBuildConfig } from "unbuild";
export default defineBuildConfig({
declaration: true,
rollup: {
emitCJS: true,
},
outDir: "dist",
clean: false,
failOnWarn: false,
externals: ["better-auth", "better-call", "@better-fetch/fetch", "stripe"],
});