feat(阶段1): monorepo 骨架与 @oj2/contract 契约包

This commit is contained in:
2026-08-06 20:39:39 -06:00
parent 39ad431e31
commit 9bfe629cd7
8 changed files with 99 additions and 0 deletions

14
tsconfig.base.json Normal file
View File

@@ -0,0 +1,14 @@
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"lib": ["ESNext", "DOM"],
"strict": true,
"noUncheckedIndexedAccess": true,
"skipLibCheck": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"types": ["bun"]
}
}