Files
TehRiehlDeal 2dd1d8cb01 chore: bootstrap monorepo with TMT-compatible schema and day-1 content
Sets up the pnpm workspace, shared TS types and formula/predicate
registries, and the six day-1 content layers (Code, Commits, Coffee,
Tickets, Releases, Tech Debt). Why now: subsequent backend and
client work depends on a stable shared contract — the formula
registry approach (no eval) means content stays data-only and both
sides can validate against the same types.

Coverage gate at 90% (currently 98.83% branches, 100% lines).

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-17 12:07:39 -07:00

22 lines
544 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022"],
"module": "ESNext",
"moduleResolution": "Bundler",
"strict": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"noFallthroughCasesInSwitch": true,
"exactOptionalPropertyTypes": false,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true
}
}