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>
38 lines
1 KiB
JSON
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"]
|
|
}
|