Files
flyer-crawler.projectium.com/tsconfig.node.json
2025-12-23 17:57:32 -08:00

19 lines
448 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"
]
}