This repository has been archived on 2026-06-01. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
json-cas/tsconfig.json
T
xiaoju 064c9afa1e
CI / check (push) Failing after 43s
chore: normalize to bun monorepo conventions
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>
2026-05-29 04:39:36 +00:00

25 lines
588 B
JSON

{
"compilerOptions": {
"types": ["bun-types"],
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"strict": true,
"exactOptionalPropertyTypes": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"verbatimModuleSyntax": true,
"skipLibCheck": true,
"composite": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true
},
"files": [],
"references": [
{ "path": "packages/json-cas" },
{ "path": "packages/json-cas-fs" },
{ "path": "packages/cli-json-cas" }
]
}