Files
flyer-crawler.projectium.com/tsconfig.node.json
Torben Sorensen 6aa72dd90b
All checks were successful
Deploy to Test Environment / deploy-to-test (push) Successful in 8m50s
unit test fixin
2025-12-11 00:53:24 -08:00

13 lines
427 B
JSON

// tsconfig.node.json
{
"compilerOptions": {
"composite": true,
"skipLibCheck": true,
"module": "ESNext",
"moduleResolution": "Bundler", // Changed from "Node"
"allowSyntheticDefaultImports": true,
"strict": true, // It's good practice to keep tooling config strict
"types": ["node"]
},
"include": ["vite.config.ts", "vitest.config.ts", "vitest.config.integration.ts", "vitest.workspace.ts"]
}