citation-evidence/tsconfig.json
tegwick 57d64c6416
All checks were successful
CI Smoke / host-smoke (push) Successful in 0s
CI Smoke / container-smoke (push) Successful in 2s
refactor: consume @citation-evidence/work for review mode (CWORK-WP-0001 cutover)
Cut review mode over to the extracted citation-work package instead of a local
src/work/ implementation.

- Add @citation-evidence/work as a link: dependency
- Repoint the @work alias (tsconfig + vite) to ../citation-work/src/work and
  allow vite fs access to the sibling
- Remove the local src/work/ implementation (now owned by citation-work)

Typecheck, lint, and the full test suite (51 tests) pass.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-09 01:49:36 +02:00

38 lines
1 KiB
JSON

{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"module": "ESNext",
"moduleResolution": "Bundler",
"jsx": "react-jsx",
"strict": true,
"noImplicitOverride": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noEmit": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"verbatimModuleSyntax": true,
"baseUrl": ".",
"paths": {
"@shared/*": ["../citation-engine/src/shared/*"],
"@engine/*": ["../citation-engine/src/engine/*"],
"@source/*": ["src/source/*"],
"@work/*": ["../citation-work/src/work/*"],
"@binder/*": ["../evidence-binder/src/*"],
"@app/*": ["src/app/*"]
}
},
"include": ["src", "tests", "vite.config.ts", "vitest.config.ts"],
"exclude": ["node_modules", "dist"]
}