Jobber/orchestrator/tsconfig.json
Shaheer Sarfaraz 16a8f1d15a
Use logger! add shim to convert backend responses to same format (#84)
* chore(orchestrator): add @infra import alias

* feat(server): add error/http/context/logger/sanitize infrastructure

* refactor(core): propagate request context, structured logs, and sanitization

* test/docs: update API contract assertions and contributor standards

* all pages working

* normalizing
2026-02-04 23:07:24 +00:00

25 lines
621 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"],
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"@server/*": ["src/server/*"],
"@infra/*": ["src/server/infra/*"],
"@client/*": ["src/client/*"],
"@shared/*": ["../shared/src/*"]
}
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}