chore: scaffold mosaic monorepo (Phase 0)

- pnpm workspaces + Turborepo
- tsconfig.base.json strict ESM
- @mosaic/types stub package
- Woodpecker CI pipeline with Valkey service
- docs/PRD.md, docs/TASKS.md, CONTEXT.md
This commit is contained in:
2026-03-06 13:15:47 -06:00
parent e9d4d8a9e2
commit 5103406c93
18 changed files with 1415 additions and 0 deletions

14
tsconfig.base.json Normal file
View File

@@ -0,0 +1,14 @@
{
"compilerOptions": {
"strict": true,
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "dist",
"esModuleInterop": true,
"skipLibCheck": true
}
}