chore: normalize to bun monorepo conventions
CI / check (push) Failing after 43s

Applied monorepo normalization:
- Updated TypeScript to use composite project references with NodeNext
- Configured Biome for linting and formatting
- Standardized package.json metadata across all packages
- Set up changesets for version management and npm publishing
- Added vitest test infrastructure to all packages
- Created Gitea Actions CI pipeline
- Added solve-issue workflow

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-29 04:39:36 +00:00
parent 1ea058a7a6
commit 064c9afa1e
46 changed files with 1166 additions and 20 deletions
+9 -9
View File
@@ -2,23 +2,23 @@
"compilerOptions": {
"types": ["bun-types"],
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"strict": true,
"exactOptionalPropertyTypes": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"verbatimModuleSyntax": true,
"skipLibCheck": true,
"paths": {
"@uncaged/json-cas": ["./packages/json-cas/src/index.ts"],
"@uncaged/json-cas-fs": ["./packages/json-cas-fs/src/index.ts"]
},
"composite": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "dist"
"sourceMap": true
},
"exclude": ["node_modules", "dist"]
"files": [],
"references": [
{ "path": "packages/json-cas" },
{ "path": "packages/json-cas-fs" },
{ "path": "packages/cli-json-cas" }
]
}