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:
43
tsconfig.base.json
Normal file
43
tsconfig.base.json
Normal 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"]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user