Update README.md to provide a comprehensive overview of The Order monorepo, including repository structure, quickstart guide, development workflow, and contribution guidelines.

This commit is contained in:
defiQUG
2025-11-07 22:34:54 -08:00
parent e020318829
commit 4af7580f7a
128 changed files with 4558 additions and 2 deletions

43
tsconfig.base.json Normal file
View File

@@ -0,0 +1,43 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022"],
"module": "ESNext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"allowJs": true,
"checkJs": false,
"jsx": "preserve",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "./dist",
"removeComments": false,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"incremental": true,
"composite": true,
"baseUrl": ".",
"paths": {
"@the-order/ui": ["./packages/ui/src"],
"@the-order/schemas": ["./packages/schemas/src"],
"@the-order/auth": ["./packages/auth/src"],
"@the-order/storage": ["./packages/storage/src"],
"@the-order/crypto": ["./packages/crypto/src"],
"@the-order/workflows": ["./packages/workflows/src"],
"@the-order/test-utils": ["./packages/test-utils/src"]
}
},
"exclude": ["node_modules", "dist", "build", ".next", "coverage"]
}