🎉 Initial commit

This commit is contained in:
2026-02-02 13:38:42 +01:00
parent 15c8ef7616
commit cac1349c95
11 changed files with 7572 additions and 122 deletions
+8 -7
View File
@@ -1,10 +1,11 @@
import { defineConfig } from 'vitest/config';
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
coverage: {
reporter: ['text', 'html', 'lcov'],
include: ['src/**/*.ts'],
exclude: ['src/**/*.test.ts', 'test/**'],
test: {
coverage: {
reporter: ["text", "html", "lcov"],
include: ["src/**/*.ts"],
exclude: ["src/**/*.test.ts", "test/**"],
},
},
},
});