TypeScript SDK scaffold (#4455)

This commit is contained in:
pakrym-oai
2025-09-29 13:27:13 -07:00
committed by GitHub
parent 83a4d4d8ed
commit adbc38a978
13 changed files with 4600 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
globals: true,
coverage: {
provider: "v8",
reporter: ["text", "lcov"],
},
},
});