fix: resolve TypeScript errors in GitHub Actions

- Add explicit types array to tsconfig.json for vitest/globals and node
- Add type annotations to test destructuring parameters to fix implicit any types
- Add explicit types to test case arrays

This resolves the TypeScript compilation errors that were failing the CI pipeline.
This commit is contained in:
2026-03-11 19:59:04 +00:00
parent 3eaca6fd75
commit ca9d6dfeba
2 changed files with 17 additions and 16 deletions
+2 -1
View File
@@ -8,7 +8,8 @@
"outDir": "dist",
"rootDir": "src",
"declaration": true,
"skipLibCheck": true
"skipLibCheck": true,
"types": ["vitest/globals", "node"]
},
"include": ["src/**/*"]
}