Jobber/orchestrator/tsconfig.json
ilia e39341258a feat(orchestrator): blocked company filters and keyword parsing
- Add shared helper to parse blocked company keywords from JSON or legacy text
- Wire discover-jobs to resolved keywords for employer blocking; extend filters UI
- Include vite/client in TS types for import.meta.env; fix JobListItem test fixture

Made-with: Cursor
2026-04-11 12:04:38 -04:00

25 lines
636 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"esModuleInterop": true,
"strict": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"types": ["vitest/globals", "@testing-library/jest-dom", "vite/client"],
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"@server/*": ["src/server/*"],
"@infra/*": ["src/server/infra/*"],
"@client/*": ["src/client/*"],
"@shared/*": ["../shared/src/*"]
}
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}