mirror of
https://github.com/lukaszraczylo/cloudflare-crawl-mcp.git
synced 2026-06-05 22:49:19 +00:00
ca9d6dfeba
- 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.
16 lines
325 B
JSON
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/**/*"]
|
|
}
|