Add Bun bundle docs and Telegram grammY support

This commit is contained in:
Peter Steinberger
2025-12-07 22:46:02 +01:00
parent 7b77e9f9ae
commit 4d3d9cca2a
16 changed files with 883 additions and 9 deletions

26
vitest.config.ts Normal file
View File

@@ -0,0 +1,26 @@
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
include: ["src/**/*.test.ts"],
exclude: [
"dist/**",
"apps/macos/**",
"apps/macos/.build/**",
"**/vendor/**",
"dist/Clawdis.app/**",
],
coverage: {
provider: "v8",
reporter: ["text", "lcov"],
thresholds: {
lines: 70,
functions: 70,
branches: 70,
statements: 70,
},
include: ["src/**/*.ts"],
exclude: ["src/**/*.test.ts"],
},
},
});