- 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
25 lines
636 B
JSON
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"]
|
|
}
|