CLose story 1.2

This commit is contained in:
2026-05-21 23:08:34 +02:00
commit 110b295a7b
75 changed files with 16065 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
environment: "happy-dom",
globals: false,
include: ["tests/**/*.test.js"],
coverage: {
provider: "v8",
reporter: ["text", "lcov"],
include: ["src/**/*.js"],
exclude: ["src/contracts/**"],
},
},
resolve: {
alias: {
"@src": "/src",
"@contracts": "/src/contracts",
"@utils": "/src/utils",
"@tests": "/tests",
},
},
});