refactor: replace esbuild with rolldown

This commit is contained in:
2026-07-18 07:44:03 +02:00
parent 67c903d427
commit 37e649efc3
8 changed files with 1525 additions and 4593 deletions
+16
View File
@@ -0,0 +1,16 @@
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
environment: "node",
include: ["src/**/*.{spec,test}.ts"],
coverage: {
enabled: true,
provider: "v8",
include: ["src/**/*.ts"],
exclude: ["src/**/*.{spec,test}.ts"],
reporter: ["lcov"],
reportsDirectory: "coverage",
},
},
});