Cut over the binder subsystem to the extracted @citation-evidence/ evidence-binder repo. The @binder alias (tsconfig + vite) now points at ../evidence-binder/src, the duplicate src/binder/ tree is deleted, and vite fs.allow is widened to serve the sibling checkout. No app code changed — all imports were already via the @binder alias. typecheck + lint green, 58 tests passing. 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/*": ["src/work/*"],
|
|
"@binder/*": ["../evidence-binder/src/*"],
|
|
"@app/*": ["src/app/*"]
|
|
}
|
|
},
|
|
"include": ["src", "tests", "vite.config.ts", "vitest.config.ts"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|