Files
lukaszraczylo ca9d6dfeba 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.
2026-03-11 19:59:04 +00:00

16 lines
325 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"esModuleInterop": true,
"strict": true,
"outDir": "dist",
"rootDir": "src",
"declaration": true,
"skipLibCheck": true,
"types": ["vitest/globals", "node"]
},
"include": ["src/**/*"]
}